diff options
Diffstat (limited to 'src/sxwm.c')
-rw-r--r-- | src/sxwm.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 +} |