Skip to content
Snippets Groups Projects
Commit e3883552 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Fix inverted logic in last commit

parent 0fee35b6
No related branches found
No related tags found
No related merge requests found
......@@ -424,7 +424,7 @@ set_icon(const void *data, size_t width, XWMHints *hints)
bool fail = false;
unsigned short tmp;
XColor fg;
bool sethints = (hints != NULL);
bool sethints = (hints == NULL);
icn = x11.XCreatePixmap(dpy, DefaultRootWindow(dpy), width, width, depth);
igc = x11.XCreateGC(dpy, icn, GCFunction | GCForeground | GCBackground | GCGraphicsExposures, &gcv);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment