diff options
Diffstat (limited to 'opentrack/main-window.cpp')
-rw-r--r-- | opentrack/main-window.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opentrack/main-window.cpp b/opentrack/main-window.cpp index c514f304..1fded8e0 100644 --- a/opentrack/main-window.cpp +++ b/opentrack/main-window.cpp @@ -602,7 +602,7 @@ bool main_window::module_tabs_enabled() const return false; // Windows 10: 40px, Windows 11: 48px, KDE: 51px constexpr int taskbar_size = 51; - constexpr int min_avail_height = 864 - taskbar_size; + constexpr int min_avail_height = 910 - taskbar_size; QRect rect = d->availableGeometry(this); return rect.height() >= min_avail_height; } |