You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Mod Options panel has no visible scroll bar, even if the options extend past the bottom of the panel. This happens with script mods with a lot of options, such as Randomizer. Scrolling with the mouse wheel still works.
I believe this is being caused by the combination flag ImGuiWindowFlags_NoDecoration on the ImGui window:
That flag is redundant with the others, since NoTitleBar, NoResize, and NoCollapse are already explicitly set on the window, so all it serves to do is add NoScrollbar.
The text was updated successfully, but these errors were encountered:
The Mod Options panel has no visible scroll bar, even if the options extend past the bottom of the panel. This happens with script mods with a lot of options, such as Randomizer. Scrolling with the mouse wheel still works.
I believe this is being caused by the combination flag
ImGuiWindowFlags_NoDecoration
on the ImGui window:Playlunky/source/playlunky/mod/mod_manager.cpp
Lines 1026 to 1029 in 08628db
That flag is redundant with the others, since
NoTitleBar
,NoResize
, andNoCollapse
are already explicitly set on the window, so all it serves to do is addNoScrollbar
.The text was updated successfully, but these errors were encountered: