Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
fixed quoting and a comment
[dwm.git]
/
client.c
diff --git
a/client.c
b/client.c
index
2aa1955
..
fdb973c
100644
(file)
--- a/
client.c
+++ b/
client.c
@@
-253,8
+253,8
@@
manage(Window w, XWindowAttributes *wa) {
updatetitle(c);
for(t = clients; t && t->win != trans; t = t->next);
settags(c, t);
updatetitle(c);
for(t = clients; t && t->win != trans; t = t->next);
settags(c, t);
- if(!c->versatile)
- c->versatile = (t != NULL) || c->isfixed;
+ if(!c->
is
versatile)
+ c->
is
versatile = (t != NULL) || c->isfixed;
attach(c);
attachstack(c);
c->isbanned = True;
attach(c);
attachstack(c);
c->isbanned = True;
@@
-268,7
+268,7
@@
manage(Window w, XWindowAttributes *wa) {
Client *
nexttiled(Client *c) {
Client *
nexttiled(Client *c) {
- for(; c && (c->versatile || !isvisible(c)); c = c->next);
+ for(; c && (c->
is
versatile || !isvisible(c)); c = c->next);
return c;
}
return c;
}
@@
-440,7
+440,7
@@
zoom(Arg *arg) {
if(!sel)
return;
if(!sel)
return;
- if(sel->versatile || (lt->arrange == versatile)) {
+ if(sel->
is
versatile || (lt->arrange == versatile)) {
togglemax(sel);
return;
}
togglemax(sel);
return;
}