diff options
| author | Warrick Lo <warrick.s.z.lo@gmail.com> | 2021-11-26 02:37:32 -0800 |
|---|---|---|
| committer | Warrick Lo <warrick.s.z.lo@gmail.com> | 2021-11-26 02:37:32 -0800 |
| commit | f171ce48d5700bc4c8a7a7f666ec2b98dabb3d82 (patch) | |
| tree | dc5d7d19c8d12fa0a24df571db98f31b1e6cd015 | |
| parent | Fix window borders showing while gaps are disabled (diff) | |
| -rw-r--r-- | drw.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -203,6 +203,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 |