Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
allowing nmaster=0 (I think that's a straight idea)
[dwm.git]
/
client.c
diff --git
a/client.c
b/client.c
index
a6b7815
..
8110263
100644
(file)
--- a/
client.c
+++ b/
client.c
@@
-96,7
+96,7
@@
focus(Client *c) {
sel = c;
if(old) {
grabbuttons(old, False);
sel = c;
if(old) {
grabbuttons(old, False);
- draw
title
(old);
+ draw
client
(old);
}
}
if(c) {
}
}
if(c) {
@@
-104,7
+104,7
@@
focus(Client *c) {
c->snext = stack;
stack = c;
grabbuttons(c, True);
c->snext = stack;
stack = c;
grabbuttons(c, True);
- draw
title
(c);
+ draw
client
(c);
XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
}
else
XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
}
else