bug: Menubar object issue with onSelect event #118
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Describe the bug
The bug occurs when trying to use the 'onSelect' event to execute a function. When attempting to use onSelect(function goes here) in code, the function is not executed when the user selects an entry in the menubar.
To Reproduce
local basalt = require("basalt")
local main = basalt.createFrame()
local example_bar = main:addMenubar()
example_bar:setOptions({"Entry 1", "Entry 2", "Entry 3"})
example_bar:onSelect(function(self, event, item)
basalt.debug("Selected item: ", item.text)
end)
Then click on an entry in the program
Expected behavior
You expect to see the debug appear with the correct item (this works when you swap menuBar with list) however, it does not execute.
Screenshots

Here I have selected an entry with the code described above, and there is no debug that has run.
Additional context
I asked in the computer craft discord for help, someone said its probably a bug.
Checklist
[X] I am running the latest version.
Tick the box if you are running the latest version!