Xinqi Bao's Git
projects
/
dwm.git
/ commitdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
| inline |
side by side
(parent:
6521c2d
)
applied Sanders zoom_update patch
author
Anselm R.Garbe <
[email protected]
>
Thu, 10 Aug 2006 15:48:50 +0000
(17:48 +0200)
committer
Anselm R.Garbe <
[email protected]
>
Thu, 10 Aug 2006 15:48:50 +0000
(17:48 +0200)
client.c
patch
|
blob
|
history
event.c
patch
|
blob
|
history
diff --git
a/client.c
b/client.c
index
5d34c07
..
8ec8ffb
100644
(file)
--- a/
client.c
+++ b/
client.c
@@
-461,7
+461,7
@@
zoom(Arg *arg)
{
Client *c;
- if(!sel || (arrange != dotile) || sel->isfloat)
+ if(!sel || (arrange != dotile) || sel->isfloat
|| sel->ismax
)
return;
if(sel == getnext(clients)) {
diff --git
a/event.c
b/event.c
index
25ed6fa
..
650967e
100644
(file)
--- a/
event.c
+++ b/
event.c
@@
-132,8
+132,7
@@
buttonpress(XEvent *e)
movemouse(c);
break;
case Button2:
- if(!c->ismax && arrange != dofloat && !c->isfloat)
- zoom(NULL);
+ zoom(NULL);
break;
case Button3:
if(!c->ismax && (arrange == dofloat || c->isfloat))