diff options
author | Luke Smith <luke@lukesmith.xyz> | 2020-05-08 13:12:08 -0400 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2020-05-08 13:12:08 -0400 |
commit | 0f3f2a46e4e75615c6a73544ef91225a2888400a (patch) | |
tree | 416e4b32f8e25cb4d8089b00fd91b0269f70a68a /drw.c | |
parent | 771df89d2812ed9ce746dc32a666344458abe4fd (diff) |
borders red and non-transparent
Diffstat (limited to 'drw.c')
-rw-r--r-- | drw.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -189,6 +189,8 @@ drw_clr_create(Drw *drw, Clr *dest, const char *clrname) DefaultColormap(drw->dpy, drw->screen), clrname, dest)) die("error, cannot allocate color '%s'", clrname); + + dest->pixel |= 0xff << 24; } /* Wrapper to create color schemes. The caller has to call free(3) on the |