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
master
emersion 6 years ago
parent 817e847749
commit 47d56306c3
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48

@ -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);
}

Loading…
Cancel
Save