Bugfix: Correctly handle ConfigureRequests for floating windows in multi-monitor setups (Thanks thomasba)

Fixes #519
This commit is contained in:
Michael Stapelberg 2011-09-14 22:59:19 +01:00
parent 6b541d382b
commit b1aa8107b3
1 changed files with 1 additions and 0 deletions

View 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();
}