From f3e0dc49b89b9e14c15abc6bc9c68305f7f1de8a Mon Sep 17 00:00:00 2001 From: Ray Chason Date: Mon, 24 Aug 2026 04:15:34 -0400 Subject: [PATCH] Adjust screen height to allow for a task bar --- win/X11/winX.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win/X11/winX.c b/win/X11/winX.c index 507cd138e..e66172f5b 100644 --- a/win/X11/winX.c +++ b/win/X11/winX.c @@ -2792,7 +2792,7 @@ init_standard_windows(void) * Resize to at most full-screen. */ { -#define TITLEBAR_SPACE 18 /* Leave SOME screen for window decorations */ +#define TITLEBAR_SPACE 100 /* Leave SOME screen for window decorations and task bar */ int screen_width = WidthOfScreen(XtScreen(wp->w)); int screen_height = HeightOfScreen(XtScreen(wp->w)) - TITLEBAR_SPACE;