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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Consider this snippet:
local Slab = require 'Slab' local SlabTest = require 'SlabTest' local list = {} for i = 1, 50 do local t = { id = tostring(i) } table.insert(list, t) end function love.load(args) love.graphics.setBackgroundColor(0.4, 0.88, 1.0) Slab.Initialize(args) end function love.update(dt) Slab.Update(dt) SlabTest.Begin() Slab.BeginWindow("test", {Title = "test"}) for i, v in ipairs(list) do Slab.Text(v.id) Slab.SameLine() if Slab.Button("x") then print(i) end end Slab.EndWindow() end function love.draw() Slab.Draw() end
This makes a window that is very long but no vertical scrollbar appears.
The text was updated successfully, but these errors were encountered:
Thanks for reporting this. Adding this for the upcoming patch release.
Sorry, something went wrong.
afda783
No branches or pull requests
Consider this snippet:
This makes a window that is very long but no vertical scrollbar appears.
The text was updated successfully, but these errors were encountered: