Browse Source

Use MODBIT in xseturgency.

master
noname 10 years ago
committed by Roberto E. Vargas Caballero
parent
commit
a48f2be7f5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      st.c

+ 1
- 1
st.c View File

@ -3570,7 +3570,7 @@ void
xseturgency(int add) {
XWMHints *h = XGetWMHints(xw.dpy, xw.win);
h->flags = add ? (h->flags | XUrgencyHint) : (h->flags & ~XUrgencyHint);
MODBIT(h->flags, add, XUrgencyHint);
XSetWMHints(xw.dpy, xw.win, h);
XFree(h);
}


Loading…
Cancel
Save