mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2024-11-17 07:48:28 +01:00
Damage view child when destroyed
This commit is contained in:
parent
fc79b7c2d2
commit
1d30b7c0f6
1 changed files with 4 additions and 3 deletions
|
@ -713,9 +713,6 @@ static void subsurface_handle_destroy(struct wl_listener *listener,
|
||||||
struct sway_subsurface *subsurface =
|
struct sway_subsurface *subsurface =
|
||||||
wl_container_of(listener, subsurface, destroy);
|
wl_container_of(listener, subsurface, destroy);
|
||||||
struct sway_view_child *child = &subsurface->child;
|
struct sway_view_child *child = &subsurface->child;
|
||||||
if (child->view->container != NULL) {
|
|
||||||
view_child_damage(child, true);
|
|
||||||
}
|
|
||||||
view_child_destroy(child);
|
view_child_destroy(child);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -812,6 +809,10 @@ void view_child_init(struct sway_view_child *child,
|
||||||
}
|
}
|
||||||
|
|
||||||
void view_child_destroy(struct sway_view_child *child) {
|
void view_child_destroy(struct sway_view_child *child) {
|
||||||
|
if (child->view->container != NULL) {
|
||||||
|
view_child_damage(child, true);
|
||||||
|
}
|
||||||
|
|
||||||
wl_list_remove(&child->surface_commit.link);
|
wl_list_remove(&child->surface_commit.link);
|
||||||
wl_list_remove(&child->surface_destroy.link);
|
wl_list_remove(&child->surface_destroy.link);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue