Skip to content

bug: Menubar object issue with onSelect event #118

Open
@C2Gamser

Description

@C2Gamser

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.
image

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!

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions