applied sanders max size fix
This commit is contained in:
parent
0982e47408
commit
2b13e7466f
2
client.c
2
client.c
@ -233,7 +233,7 @@ manage(Window w, XWindowAttributes *wa) {
|
|||||||
settags(c, getclient(trans));
|
settags(c, getclient(trans));
|
||||||
if(!c->isfloat)
|
if(!c->isfloat)
|
||||||
c->isfloat = trans
|
c->isfloat = trans
|
||||||
|| (c->maxw && c->minw &&
|
|| (c->maxw && c->minw && c->maxh && c->minh &&
|
||||||
c->maxw == c->minw && c->maxh == c->minh);
|
c->maxw == c->minw && c->maxh == c->minh);
|
||||||
resizetitle(c);
|
resizetitle(c);
|
||||||
if(clients)
|
if(clients)
|
||||||
|
4
view.c
4
view.c
@ -45,6 +45,10 @@ static void
|
|||||||
togglemax(Client *c) {
|
togglemax(Client *c) {
|
||||||
XEvent ev;
|
XEvent ev;
|
||||||
|
|
||||||
|
if (x->maxw && x->minw && x->maxh && x->minh &&
|
||||||
|
x->maxw == x->minw && x->maxh == x->minh)
|
||||||
|
return;
|
||||||
|
|
||||||
if((c->ismax = !c->ismax)) {
|
if((c->ismax = !c->ismax)) {
|
||||||
c->rx = c->x; c->x = sx;
|
c->rx = c->x; c->x = sx;
|
||||||
c->ry = c->y; c->y = bh;
|
c->ry = c->y; c->y = bh;
|
||||||
|
Loading…
Reference in New Issue
Block a user