]> git.sur5r.net Git - i3/i3/commitdiff
Bugfix: Correctly handle ConfigureRequests for floating windows in multi-monitor...
authorMichael Stapelberg <michael@stapelberg.de>
Wed, 14 Sep 2011 21:59:19 +0000 (22:59 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Wed, 14 Sep 2011 21:59:19 +0000 (22:59 +0100)
Fixes #519

src/handlers.c

index 6b79ed401ad445b3f4693e679a2fa241daec2d65..72e135db6fd1363d10e173818a05ed5c83ebbc98 100644 (file)
@@ -371,6 +371,7 @@ static int handle_configure_request(xcb_configure_request_event_t *event) {
             con->rect.height = event->height + (-1) * bsr.height;
             DLOG("proposed height = %d, new height is %d\n", event->height, con->rect.height);
         }
+        floating_maybe_reassign_ws(con);
         tree_render();
     }