Merge pull request #2446 from emersion/xwayland-unmanaged-order

xwayland: fix unmanaged surfaces order
This commit is contained in:
Drew DeVault 2018-08-10 09:46:08 -04:00 committed by GitHub
commit c7e99ee0d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ static void unmanaged_handle_map(struct wl_listener *listener, void *data) {
wl_container_of(listener, surface, map);
struct wlr_xwayland_surface *xsurface = surface->wlr_xwayland_surface;
wl_list_insert(&root_container.sway_root->xwayland_unmanaged,
wl_list_insert(root_container.sway_root->xwayland_unmanaged.prev,
&surface->link);
wl_signal_add(&xsurface->surface->events.commit, &surface->commit);