diff options
| author | [email protected] <unknown> | 2006-08-04 18:34:40 +0200 |
|---|---|---|
| committer | [email protected] <unknown> | 2006-08-04 18:34:40 +0200 |
| commit | b098c94ed44495957de11a6160fa0560abbe944f (patch) | |
| tree | f30f06a64f0847f7fe9c33a6660b47896bbbd892 | |
| parent | fixed xterm font change (all other related apps should work fine with this fi... (diff) | |
| download | seiwm-b098c94ed44495957de11a6160fa0560abbe944f.tar.xz seiwm-b098c94ed44495957de11a6160fa0560abbe944f.zip | |
small performance tweak ;)
| -rw-r--r-- | event.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -189,8 +189,10 @@ configurerequest(XEvent *e) XSendEvent(dpy, c->win, True, NoEventMask, &synev); } XSync(dpy, False); - arrange(NULL); - drawall(); + if(c->isfloat) + resize(c, False, TopLeft); + else + arrange(NULL); } else { wc.x = ev->x; |