We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Frame
Dropdown
Note: I'm not sure if this is a bug report or a feature request (i.e. if this is unintended or intended behaviour).
An expanded Dropdown may have items inaccessible, as Frame scrolling is disabled while the dropdown is expanded.
local filePath = "/basalt.lua" if not(fs.exists(filePath))then shell.run("pastebin run ESs1mg7P packed true "..filePath:gsub(".lua", "")) end local basalt = require(filePath:gsub(".lua", "")) local main = basalt.createFrame("mainFrame"):setScrollable() local w, h = term.getSize() for i=1,5 do main:addDropdown('dropdown_'..tostring(i)) :setPosition(2, h+i-2) :setSize(10, 1) :addItem('Item 1') :addItem('Item 2') :addItem('Item 3') :show() end basalt.autoUpdate()
In the example above, Item 2 and Item 3 are inaccessible, as:
Item 2
Item 3
Be able to scroll further down the Frame while the Dropdown is expanded.
[x] I am running the latest version.
The text was updated successfully, but these errors were encountered:
Hello, i guess this is the fix you want: b303b46 currently only on the dev branch available
Sorry, something went wrong.
No branches or pull requests
Note: I'm not sure if this is a bug report or a feature request (i.e. if this is unintended or intended behaviour).
Describe the bug
An expanded
Dropdown
may have items inaccessible, asFrame
scrolling is disabled while the dropdown is expanded.Minimal Working Example
clip.dropwown.inaccessible.mp4
In the example above,
Item 2
andItem 3
are inaccessible, as:Frame
Dropdown
is expandedExpected behavior
Be able to scroll further down the
Frame
while theDropdown
is expanded.Checklist
[x] I am running the latest version.
The text was updated successfully, but these errors were encountered: