From b1aa8107b3bc9510422b4a71744c2bfa71627b12 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Wed, 14 Sep 2011 22:59:19 +0100 Subject: [PATCH] Bugfix: Correctly handle ConfigureRequests for floating windows in multi-monitor setups (Thanks thomasba) Fixes #519 --- src/handlers.c | 1 + 1 file changed, 1 insertion(+) 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(); } -- 2.39.5