tfixed - dwm - [fork] customized build of dwm, the dynamic window manager
(HTM) git clone git://src.adamsgaard.dk/dwm
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 6828fba7a002062dd383f83bb8d584a82fc7677a
(DIR) parent aa1bda81646e9d6188fd584009be0eee619f6966
(HTM) Author: Anselm R. Garbe <arg@10kloc.org>
Date: Tue, 29 Aug 2006 17:33:27 +0200
fixed
Diffstat:
M event.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
---
(DIR) diff --git a/event.c b/event.c
t@@ -196,7 +196,9 @@ configurerequest(XEvent *e)
XSendEvent(dpy, c->win, True, NoEventMask, &synev);
}
XSync(dpy, False);
- if(c->isfloat || c->ismax) {
+ if(c->isfloat)
+ resize(c, False, TopLeft);
+ else if(c->ismax) {
resize(c, False, TopLeft);
c->x = ox;
c->y = oy;