From 0932dfc6f864056a218d074a752cb5116f50f703 Mon Sep 17 00:00:00 2001 From: camthehaxman Date: Wed, 24 Jan 2024 09:26:28 -0600 Subject: [PATCH] fix annoying flicker when resizing window on X11 --- src/Window_X11.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Window_X11.c b/src/Window_X11.c index 86a94c77d..0bba5488c 100644 --- a/src/Window_X11.c +++ b/src/Window_X11.c @@ -304,7 +304,7 @@ static void DoCreateWindow(int width, int height) { win_handle = XCreateWindow(win_display, win_rootWin, x, y, width, height, 0, win_visual.depth /* CopyFromParent*/, InputOutput, win_visual.visual, - CWColormap | CWEventMask | CWBackPixel | CWBorderPixel, &attributes); + CWColormap | CWEventMask, &attributes); if (!win_handle) Logger_Abort("XCreateWindow failed"); #ifdef CC_BUILD_XIM