mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 21:14:10 +01:00
Merge pull request #1808 from emersion/xwayland-unmapped-on-create
Do not call the map handler when an xwayland surface is created
This commit is contained in:
commit
a5735c08c7
@ -113,8 +113,6 @@ static struct sway_xwayland_unmanaged *create_unmanaged(
|
|||||||
wl_signal_add(&xsurface->events.destroy, &surface->destroy);
|
wl_signal_add(&xsurface->events.destroy, &surface->destroy);
|
||||||
surface->destroy.notify = unmanaged_handle_destroy;
|
surface->destroy.notify = unmanaged_handle_destroy;
|
||||||
|
|
||||||
unmanaged_handle_map(&surface->map, xsurface);
|
|
||||||
|
|
||||||
return surface;
|
return surface;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -305,6 +303,4 @@ void handle_xwayland_surface(struct wl_listener *listener, void *data) {
|
|||||||
|
|
||||||
wl_signal_add(&xsurface->events.map, &xwayland_view->map);
|
wl_signal_add(&xsurface->events.map, &xwayland_view->map);
|
||||||
xwayland_view->map.notify = handle_map;
|
xwayland_view->map.notify = handle_map;
|
||||||
|
|
||||||
handle_map(&xwayland_view->map, xsurface);
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user