applied Sanders zoom_update patch
This commit is contained in:
parent
6521c2dd41
commit
9fce8215b7
2 changed files with 2 additions and 3 deletions
2
client.c
2
client.c
|
@ -461,7 +461,7 @@ zoom(Arg *arg)
|
||||||
{
|
{
|
||||||
Client *c;
|
Client *c;
|
||||||
|
|
||||||
if(!sel || (arrange != dotile) || sel->isfloat)
|
if(!sel || (arrange != dotile) || sel->isfloat || sel->ismax)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if(sel == getnext(clients)) {
|
if(sel == getnext(clients)) {
|
||||||
|
|
1
event.c
1
event.c
|
@ -132,7 +132,6 @@ buttonpress(XEvent *e)
|
||||||
movemouse(c);
|
movemouse(c);
|
||||||
break;
|
break;
|
||||||
case Button2:
|
case Button2:
|
||||||
if(!c->ismax && arrange != dofloat && !c->isfloat)
|
|
||||||
zoom(NULL);
|
zoom(NULL);
|
||||||
break;
|
break;
|
||||||
case Button3:
|
case Button3:
|
||||||
|
|
Loading…
Reference in a new issue