[mutter/wip/carlosg/xwayland-on-demand: 25/32] x11: Unmanage X11 windows on MetaX11Display finalization
- From: Carlos Garnacho <carlosg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [mutter/wip/carlosg/xwayland-on-demand: 25/32] x11: Unmanage X11 windows on MetaX11Display finalization
- Date: Mon, 7 Jan 2019 12:50:31 +0000 (UTC)
commit 37299d85493d9cc25de2ae445a5180e0aca641ea
Author: Carlos Garnacho <carlosg gnome org>
Date: Mon Dec 10 13:42:53 2018 +0100
x11: Unmanage X11 windows on MetaX11Display finalization
This used to be relied upon meta_display_close(), but MetaDisplay
and MetaX11Display lifetimes are kind of decoupled.
src/x11/meta-x11-display.c | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
---
diff --git a/src/x11/meta-x11-display.c b/src/x11/meta-x11-display.c
index 344dbf786..d0d7a3740 100644
--- a/src/x11/meta-x11-display.c
+++ b/src/x11/meta-x11-display.c
@@ -95,6 +95,27 @@ static void unset_wm_check_hint (MetaX11Display *x11_display);
static void prefs_changed_callback (MetaPreference pref,
void *data);
+static void
+meta_x11_display_unmanage_windows (MetaX11Display *x11_display)
+{
+ GList *windows, *l;
+ MetaWindow *window;
+
+ if (!x11_display->xids)
+ return;
+
+ windows = g_hash_table_get_values (x11_display->xids);
+ g_list_foreach (windows, (GFunc) g_object_ref, NULL);
+
+ for (l = windows; l; l = l->next)
+ {
+ window = l->data;
+ if (!window->unmanaging)
+ meta_window_unmanage (window, META_CURRENT_TIME);
+ }
+ g_list_free_full (windows, g_object_unref);
+}
+
static void
meta_x11_display_dispose (GObject *object)
{
@@ -108,6 +129,8 @@ meta_x11_display_dispose (GObject *object)
meta_x11_selection_shutdown (x11_display);
+ meta_x11_display_unmanage_windows (x11_display);
+
if (x11_display->ui)
{
meta_ui_free (x11_display->ui);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]