Xinqi Bao's Git
projects
/
dwm.git
/ diff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
| inline |
side by side
(parent:
14d05e7
)
I changed sanders patch to fix the ff issue to be simplier, though it needs testing...
author
Anselm R. Garbe <
[email protected]
>
Fri, 29 Sep 2006 10:56:01 +0000
(12:56 +0200)
committer
Anselm R. Garbe <
[email protected]
>
Fri, 29 Sep 2006 10:56:01 +0000
(12:56 +0200)
event.c
diff
|
blob
|
history
diff --git
a/event.c
b/event.c
index
83e1b86
..
f4ac2d5
100644
(file)
--- a/
event.c
+++ b/
event.c
@@
-177,9
+177,8
@@
configurerequest(XEvent *e) {
configure(c);
XSync(dpy, False);
if(c->isfloat) {
- resize(c, False, TopLeft);
- if(!isvisible(c))
- ban(c);
+ if(isvisible(c))
+ resize(c, False, TopLeft);
}
else
arrange(NULL);