1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Fix window scrollbar not able to navigate to the end of large lists

This commit is contained in:
ζeh Matt
2023-02-28 06:20:31 +02:00
parent 291a778720
commit 320894971f

View File

@@ -178,18 +178,18 @@ struct Viewport
*/
struct ScrollBar
{
uint16_t flags{}; // 0x00
uint16_t h_left{}; // 0x02
uint16_t h_right{}; // 0x04
uint16_t h_thumb_left{}; // 0x06
uint16_t h_thumb_right{}; // 0x08
uint16_t v_top{}; // 0x0A
uint16_t v_bottom{}; // 0x0C
uint16_t v_thumb_top{}; // 0x0E
uint16_t v_thumb_bottom{}; // 0x10
uint16_t flags{};
int32_t h_left{};
int32_t h_right{};
int32_t h_thumb_left{};
int32_t h_thumb_right{};
int32_t v_top{};
int32_t v_bottom{};
int32_t v_thumb_top{};
int32_t v_thumb_bottom{};
};
constexpr auto WINDOW_SCROLL_UNDEFINED = std::numeric_limits<uint16_t>::max();
constexpr auto WINDOW_SCROLL_UNDEFINED = std::numeric_limits<int32_t>::max();
struct Focus
{