mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-17 21:25:40 +00:00
Fix: crash when not even a single row fits for dropdowns on low resolution screens (#10934)
This commit is contained in:
parent
ee2d0745e9
commit
c43a23cea8
@ -385,11 +385,8 @@ void ShowDropDownListAt(Window *w, DropDownList &&list, int selected, int button
|
|||||||
scroll = true;
|
scroll = true;
|
||||||
uint avg_height = height / (uint)list.size();
|
uint avg_height = height / (uint)list.size();
|
||||||
|
|
||||||
/* Check at least there is space for one item. */
|
/* Fit the list; create at least one row, even if there is no height available. */
|
||||||
assert(available_height >= avg_height);
|
uint rows = std::max<uint>(available_height / avg_height, 1);
|
||||||
|
|
||||||
/* Fit the list. */
|
|
||||||
uint rows = available_height / avg_height;
|
|
||||||
height = rows * avg_height;
|
height = rows * avg_height;
|
||||||
|
|
||||||
/* Add space for the scrollbar. */
|
/* Add space for the scrollbar. */
|
||||||
|
Loading…
Reference in New Issue
Block a user