mirror of
https://github.com/brl/mutter.git
synced 2025-02-21 07:24:09 +00:00
display: Dispose Stack after Compositor and X11
As per commit 7718e67f, destroying the compositor causes destroying window actors and this leads to stack changes, but at this point the stack was already disposed and cleared. So, clear the stack when any component that could use it (compositor, and X11) has already been destroyed. As consequence, also the stamps should be destroyed at later point. Fixes https://gitlab.gnome.org/GNOME/mutter/issues/623 https://gitlab.gnome.org/GNOME/mutter/merge_requests/605 (cherry-picked from commit e94a0fced9104bc96951589a198eacbec50fee82) https://gitlab.gnome.org/GNOME/mutter/merge_requests/607
This commit is contained in:
parent
2ce4a20c8e
commit
8b79c83ad5
@ -920,10 +920,6 @@ meta_display_close (MetaDisplay *display,
|
||||
|
||||
g_clear_object (&display->gesture_tracker);
|
||||
|
||||
g_clear_pointer (&display->stack, meta_stack_free);
|
||||
g_clear_pointer (&display->stack_tracker,
|
||||
meta_stack_tracker_free);
|
||||
|
||||
if (display->focus_timeout_id)
|
||||
g_source_remove (display->focus_timeout_id);
|
||||
display->focus_timeout_id = 0;
|
||||
@ -940,12 +936,6 @@ meta_display_close (MetaDisplay *display,
|
||||
/* Stop caring about events */
|
||||
meta_display_free_events (display);
|
||||
|
||||
/* Must be after all calls to meta_window_unmanage() since they
|
||||
* unregister windows
|
||||
*/
|
||||
g_hash_table_destroy (display->wayland_windows);
|
||||
g_hash_table_destroy (display->stamps);
|
||||
|
||||
if (display->compositor)
|
||||
meta_compositor_destroy (display->compositor);
|
||||
|
||||
@ -956,6 +946,16 @@ meta_display_close (MetaDisplay *display,
|
||||
g_clear_object (&display->x11_display);
|
||||
}
|
||||
|
||||
/* Must be after all calls to meta_window_unmanage() since they
|
||||
* unregister windows
|
||||
*/
|
||||
g_hash_table_destroy (display->wayland_windows);
|
||||
g_hash_table_destroy (display->stamps);
|
||||
|
||||
g_clear_pointer (&display->stack, meta_stack_free);
|
||||
g_clear_pointer (&display->stack_tracker,
|
||||
meta_stack_tracker_free);
|
||||
|
||||
meta_display_shutdown_keys (display);
|
||||
|
||||
g_clear_object (&display->bell);
|
||||
|
Loading…
x
Reference in New Issue
Block a user