Replies: 1 comment
-
Hey, thanks for pointing that out. You probably overthought it a bit. I could not test it because I am on a laptop without a mouse but it should work just fine by checking |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
when the only way to scroll is sideways, using the mouse wheel (without shift) should scroll sideways (as it is the case with the normal scroll container)
A quick implementation could check if
vertical_scroll_mode
is set toSCROLL_MODE_DISABLED
in_gui_input()
, this does not however take into consideration the case when it's not possible to scroll vertically due to lack of scrollable content.What I added for me ( in
_gui_input()
):I didn't create a merge request (PR) because maybe you want into more elegantly implemented or also want to include the case with
SCROLL_MODE_AUTO
and not enough scrollable content.Beta Was this translation helpful? Give feedback.
All reactions