Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
separated layout-specific stuff into separate .h and .c files which are included...
[dwm.git]
/
client.c
diff --git
a/client.c
b/client.c
index
08fe1bd
..
d4dfe6e
100644
(file)
--- a/
client.c
+++ b/
client.c
@@
-230,7
+230,7
@@
manage(Window w, XWindowAttributes *wa) {
setclientstate(c, IconicState);
c->isbanned = True;
focus(c);
setclientstate(c, IconicState);
c->isbanned = True;
focus(c);
- lt->arrange(
NULL
);
+ lt->arrange();
}
void
}
void
@@
-305,7
+305,7
@@
togglefloating(const char *arg) {
sel->isfloating = !sel->isfloating;
if(sel->isfloating)
resize(sel, sel->x, sel->y, sel->w, sel->h, True);
sel->isfloating = !sel->isfloating;
if(sel->isfloating)
resize(sel, sel->x, sel->y, sel->w, sel->h, True);
- lt->arrange(
NULL
);
+ lt->arrange();
}
void
}
void
@@
-337,7
+337,7
@@
unmanage(Client *c) {
XSync(dpy, False);
XSetErrorHandler(xerror);
XUngrabServer(dpy);
XSync(dpy, False);
XSetErrorHandler(xerror);
XUngrabServer(dpy);
- lt->arrange(
NULL
);
+ lt->arrange();
}
void
}
void