From 412b3eace2362b1cf391565caa53010d35670829 Mon Sep 17 00:00:00 2001 From: Roman Dobosz Date: Wed, 18 Mar 2026 10:16:41 +0100 Subject: [PATCH] Make border opaque. When composite manager (like picom or xcompmgr) is used together with Window Maker, some of the windows (i.e. terminator) might have transparent border. This patch will prevent from such situation. Closes: https://github.com/window-maker/wmaker/issues/58 --- src/framewin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/framewin.c b/src/framewin.c index ac3fc747..721e6be0 100644 --- a/src/framewin.c +++ b/src/framewin.c @@ -70,7 +70,7 @@ static void allocFrameBorderPixel(WFrameWindow *fwin, const char *color_name, un *pixel = wmalloc(sizeof(unsigned long)); if (*pixel) - **pixel = xcol.pixel; + **pixel = xcol.pixel |= 0xff << 24; } WFrameWindow *wFrameWindowCreate(WScreen * scr, int wlevel, int x, int y,