mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 21:14:10 +01:00
Merge pull request #2170 from apreiml/master
fix accidently removing borders on XCB_CONFIGURE_REQUEST
This commit is contained in:
commit
92e81df470
@ -335,9 +335,9 @@ static void handle_request_configure(struct wl_listener *listener, void *data) {
|
||||
return;
|
||||
}
|
||||
if (container_is_floating(view->swayc)) {
|
||||
configure(view, view->swayc->x, view->swayc->y, ev->width, ev->height);
|
||||
configure(view, view->x, view->y, ev->width, ev->height);
|
||||
} else {
|
||||
configure(view, view->swayc->x, view->swayc->y,
|
||||
configure(view, view->x, view->y,
|
||||
view->width, view->height);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user