diff options
Diffstat (limited to 'drw.c')
-rw-r--r-- | drw.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -202,6 +202,9 @@ drw_clr_create(Drw *drw, Clr *dest, const char *clrname) DefaultColormap(drw->dpy, drw->screen), clrname, dest)) die("error, cannot allocate color '%s'", clrname); + + // PATCHED: write 1 to alpha bytes + dest->pixel |= 0xff << 24; } /* Wrapper to create color schemes. The caller has to call free(3) on the |