This commit is contained in:
NoryiE
2025-10-30 06:33:28 +00:00
parent b9c0681695
commit 27cc9a3fbd

View File

@@ -26,7 +26,7 @@ foreground = colors.white
text = "Option 1",
callback = function(self)
-- Handle selection
basalt.debug("Selected Option 1")
basalt.LOGGER.debug("Selected Option 1")
end
},
{
@@ -39,7 +39,7 @@ selectedForeground = colors.white
-- Listen for selections
dropdown:onChange(function(self, value)
basalt.debug("Selected:", value)
basalt.LOGGER.debug("Selected:", value)
end)
basalt.run()