summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/sxwm.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/sxwm.c b/src/sxwm.c
index b5558b2..6fce79d 100644
--- a/src/sxwm.c
+++ b/src/sxwm.c
@@ -1048,7 +1048,8 @@ long parse_col(const char *hex)
return WhitePixel(dpy, DefaultScreen(dpy));
}
- return col.pixel;
+ /* return col.pixel; */
+ return col.pixel |= 0xff << 24;
}
void quit(void)
@@ -1689,4 +1690,4 @@ int main(int ac, char **av)
setup();
run();
return 0;
-} \ No newline at end of file
+}