mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-25 16:42:26 +00:00
layer shell: only send unmap on close if mapped
This commit is contained in:
parent
61d6408fdb
commit
11e94c406b
@ -291,7 +291,9 @@ void wlr_layer_surface_v1_close(struct wlr_layer_surface_v1 *surface) {
|
||||
return;
|
||||
}
|
||||
surface->closed = true;
|
||||
layer_surface_unmap(surface);
|
||||
if (surface->mapped) {
|
||||
layer_surface_unmap(surface);
|
||||
}
|
||||
zwlr_layer_surface_v1_send_closed(surface->resource);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user