removed VRATIO, NMASTER, inc*(), renamed HRATIO into MASTER, see mailinglist for details
This commit is contained in:
parent
4216bf801f
commit
aa53e39ec0
8 changed files with 90 additions and 197 deletions
6
client.c
6
client.c
|
@ -230,7 +230,7 @@ manage(Window w, XWindowAttributes *wa) {
|
|||
setclientstate(c, IconicState);
|
||||
c->isbanned = True;
|
||||
focus(c);
|
||||
lt->arrange();
|
||||
lt->arrange(NULL);
|
||||
}
|
||||
|
||||
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);
|
||||
lt->arrange();
|
||||
lt->arrange(NULL);
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -337,7 +337,7 @@ unmanage(Client *c) {
|
|||
XSync(dpy, False);
|
||||
XSetErrorHandler(xerror);
|
||||
XUngrabServer(dpy);
|
||||
lt->arrange();
|
||||
lt->arrange(NULL);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue