1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-03-25 14:13:31 +01:00

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
This commit is contained in:
2026-03-18 10:16:41 +01:00
committed by Carlos R. Mafra
parent 0aeba6064b
commit 412b3eace2

View File

@@ -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,