-
-
Notifications
You must be signed in to change notification settings - Fork 968
New issue
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
Change #6060: Allow drawing dropdown lists with scrollbars above and fix scrolling movement #7056
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With this applied, comboboxes scroll exactly as expected in all cases I tried.
I didn't test for any unexpected side effects of this elsewhere, dunno if they're possible / likely.
Nice fix.
I only tested it, didn't review code, bit premature.
… above the widgets
…scroll it to its very bottom. This "prevents" the fast movement towards the bottom when holding down the mouse button.
…ot fit the screen.
@@ -3516,8 +3516,9 @@ void ChangeVehicleViewports(VehicleID from_index, VehicleID to_index) | |||
*/ | |||
void RelocateAllWindows(int neww, int newh) | |||
{ | |||
Window *w; | |||
DeleteWindowById(WC_DROPDOWN_MENU, 0); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nah, is fine here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@LordAro
I saw your comment about:
i feel like max<uint> would be cleaner - no need to cast after the function call (+ available_height_above below)
... but cannot find it now on GitHub.
I think the parameters of the max function can be negative. I prefer making the cast after the max is calculated (it won't be negative). Is it really necessary to use max<uint> ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I deleted it because I saw it was stupid, don't worry about it :)
Rewrite of the code for choosing where to open a dropdown.
With this patch, dropdown can be created above the opening widget and with scrollbar enabled.
In case of opening above and with scrollbar, list is moved to show the last items. Otherwise, if mouse button is held down, it starts scrolling down without moving the mouse.