projects
/
suckless
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
98c6a92
)
applied sanders maxfix patch
author
arg@10ksloc.org
<unknown>
Fri, 21 Jul 2006 08:07:41 +0000
(10:07 +0200)
committer
arg@10ksloc.org
<unknown>
Fri, 21 Jul 2006 08:07:41 +0000
(10:07 +0200)
event.c
patch
|
blob
|
history
diff --git
a/event.c
b/event.c
index 58df281687e91d4e99dc1c6137cdaabe234021f9..aa074275ccc300a2554dfcbd803a4af5e64fbe1d 100644
(file)
--- a/
event.c
+++ b/
event.c
@@
-170,7
+170,7
@@
buttonpress(XEvent *e)
default:
break;
case Button1:
- if(
arrange == dofloat || c->isfloat
) {
+ if(
!c->ismax && (arrange == dofloat || c->isfloat)
) {
higher(c);
movemouse(c);
}
@@
-179,7
+179,7
@@
buttonpress(XEvent *e)
lower(c);
break;
case Button3:
- if(
arrange == dofloat || c->isfloat
) {
+ if(
!c->ismax && (arrange == dofloat || c->isfloat)
) {
higher(c);
resizemouse(c);
}