pinosaur
/
dwm.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a62ea40
)
applied yiyus fix
author
arg@localhost.localdomain
<unknown>
Sat, 6 Dec 2008 16:20:14 +0000
(16:20 +0000)
committer
arg@localhost.localdomain
<unknown>
Sat, 6 Dec 2008 16:20:14 +0000
(16:20 +0000)
dwm.c
patch
|
blob
|
history
diff --git
a/dwm.c
b/dwm.c
index
ff71194
..
c9c2994
100644
(file)
--- a/
dwm.c
+++ b/
dwm.c
@@
-1651,7
+1651,7
@@
updatewmhints(Client *c) {
XWMHints *wmh;
if((wmh = XGetWMHints(dpy, c->win))) {
- if(
ISVISIBLE(c)
&& wmh->flags & XUrgencyHint) {
+ if(
c == sel
&& wmh->flags & XUrgencyHint) {
wmh->flags &= ~XUrgencyHint;
XSetWMHints(dpy, c->win, wmh);
}