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:
14d05e7
)
I changed sanders patch to fix the ff issue to be simplier, though it needs testing...
author
Anselm R. Garbe
<arg@10kloc.org>
Fri, 29 Sep 2006 10:56:01 +0000
(12:56 +0200)
committer
Anselm R. Garbe
<arg@10kloc.org>
Fri, 29 Sep 2006 10:56:01 +0000
(12:56 +0200)
event.c
patch
|
blob
|
history
diff --git
a/event.c
b/event.c
index 83e1b864f91de4ae348b6ac41760fdf484a7793b..f4ac2d546a64a39a8f683c07e054b96df141a46e 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);