about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-02-19 11:03:27 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-02-19 11:03:27 +0100
commit3167373512c562f8f040203d2ee29084c76d00a0 (patch)
treea2e0c7cd972f7babd5b97ee04dfc923c6a069721
parent4cff744438a8ee1dc3928503a297c73cc9ad96d0 (diff)
downloaddwm-3167373512c562f8f040203d2ee29084c76d00a0.tar.gz
fixed configurerequest according to the problem Jukka reported
-rw-r--r--event.c27
1 files changed, 16 insertions, 11 deletions
diff --git a/event.c b/event.c
index e20a60a..fbce631 100644
--- a/event.c
+++ b/event.c
@@ -165,6 +165,7 @@ buttonpress(XEvent *e) {
 
 static void
 configurerequest(XEvent *e) {
+	int x, y, w, h;
 	Client *c;
 	XConfigureRequestEvent *ev = &e->xconfigurerequest;
 	XWindowChanges wc;
@@ -174,20 +175,24 @@ configurerequest(XEvent *e) {
 		if(ev->value_mask & CWBorderWidth)
 			c->border = ev->border_width;
 		if(c->isfixed || c->isfloat || (arrange == dofloat)) {
-			if(ev->value_mask & CWX)
-				c->x = ev->x;
-			if(ev->value_mask & CWY)
-				c->y = ev->y;
-			if(ev->value_mask & CWWidth)
-				c->w = ev->width;
-			if(ev->value_mask & CWHeight)
-				c->h = ev->height;
+			x = (ev->value_mask & CWX) ? ev->x : c->x;
+			y = (ev->value_mask & CWY) ? ev->y : c->y;
+			w = (ev->value_mask & CWWidth) ? ev->width : c->w;
+			h = (ev->value_mask & CWHeight) ? ev->height : c->h;
 			if((ev->value_mask & (CWX | CWY))
 			&& !(ev->value_mask & (CWWidth | CWHeight)))
+			{
+				c->x = x;
+				c->y = y;
 				configure(c);
-			resize(c, c->x, c->y, c->w, c->h, False);
-			if(!isvisible(c))
-				ban(c);
+				if(isvisible(c))
+					XMoveWindow(dpy, c->win, c->x, c->y);
+			}
+			else {
+				resize(c, x, y, w, h, False);
+				if(!isvisible(c))
+					ban(c);
+			}
 		}
 		else
 			configure(c);
#n167'>167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283