From: Michael Stapelberg Date: Wed, 14 Sep 2011 21:59:19 +0000 (+0100) Subject: Bugfix: Correctly handle ConfigureRequests for floating windows in multi-monitor... X-Git-Tag: 4.1~160^2^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=b1aa8107b3bc9510422b4a71744c2bfa71627b12;p=i3%2Fi3 Bugfix: Correctly handle ConfigureRequests for floating windows in multi-monitor setups (Thanks thomasba) Fixes #519 --- diff --git a/src/handlers.c b/src/handlers.c index 6b79ed40..72e135db 100644 --- a/src/handlers.c +++ b/src/handlers.c @@ -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(); }