commit 47d56306c3c0578daf705e1421b79791be85428e
parent 817e847749240a0c04756c37c88dc554efc56c9e
Author: emersion <contact@emersion.fr>
Date: Mon, 2 Jul 2018 20:24:17 +0100
Fix xwayland floating views unclickable
Some xwayland views are first configured with a 1x1 size, and then
resized. Since the view size isn't updated, they are unclickable.
Fixes #2195
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c
@@ -284,6 +284,11 @@ static void handle_commit(struct wl_listener *listener, void *data) {
transaction_notify_view_ready_by_size(view,
surface_state->width, surface_state->height);
}
+
+ if (container_is_floating(view->swayc)) {
+ view_update_size(view, surface_state->width, surface_state->height);
+ }
+
view_damage_from(view);
}