sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 92e81df470b040f57f020cef4d8dec67097d0ed6
parent 1579fc1d91468ce4d29701b4b1c8be6e635f21ff
Author: emersion <contact@emersion.fr>
Date:   Wed, 27 Jun 2018 17:11:35 +0100

Merge pull request #2170 from apreiml/master

 fix accidently removing borders on XCB_CONFIGURE_REQUEST 
Diffstat:
Msway/desktop/xwayland.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c @@ -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); } }