From: Anselm R Garbe Date: Wed, 5 Mar 2008 13:13:13 +0000 (+0000) Subject: fixed urgent hint handling X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=commitdiff_plain;h=5d9ae3f3b7ad904218add1c2559eec9a7a073e3e fixed urgent hint handling --- diff --git a/dwm.c b/dwm.c index 9bad83c..a1a34e2 100644 --- a/dwm.c +++ b/dwm.c @@ -1870,10 +1870,11 @@ void updatewmhints(Client *c) { XWMHints *wmh; - if(c == sel) - return; if((wmh = XGetWMHints(dpy, c->win))) { - c->isurgent = (wmh->flags & XUrgencyHint) ? True : False; + if(c == sel) + sel->isurgent = False; + else + c->isurgent = (wmh->flags & XUrgencyHint) ? True : False; XFree(wmh); } }