Got questions, comments, patches, etc.?
Contact Jason Woofenden
gitweb
/
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
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) {
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);
}
else
arrange(NULL);