From fa1a374a045526fc0b2b02a843d318f646c69682 Mon Sep 17 00:00:00 2001 From: Ted John Date: Sun, 17 Jan 2021 16:13:56 +0000 Subject: [PATCH] Scale binding column in window --- src/openrct2-ui/windows/ShortcutKeys.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2-ui/windows/ShortcutKeys.cpp b/src/openrct2-ui/windows/ShortcutKeys.cpp index 1cd7935248..10b6d8e8ad 100644 --- a/src/openrct2-ui/windows/ShortcutKeys.cpp +++ b/src/openrct2-ui/windows/ShortcutKeys.cpp @@ -490,7 +490,7 @@ private: gfx_filter_rect(&dpi, 0, y - 1, scrollWidth, y + (SCROLLABLE_ROW_HEIGHT - 2), FilterPaletteID::PaletteDarken1); } - auto bindingOffset = scrollWidth - 150; + auto bindingOffset = (scrollWidth * 2) / 3; auto ft = Formatter(); ft.Add(STR_SHORTCUT_ENTRY_FORMAT); if (shortcut.CustomString.empty())