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

Fix inverted logic in last commit

parent 8a9fc05b
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #4378 passed
......@@ -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.
Please register or to comment