|
|
99600e |
From 668e0673a7ea3fe4cb6c99bc7b56bc52597e2061 Mon Sep 17 00:00:00 2001
|
|
|
99600e |
From: Ondrej Holy <oholy@redhat.com>
|
|
|
99600e |
Date: Wed, 25 Sep 2019 09:16:44 +0200
|
|
|
99600e |
Subject: [PATCH] window: Fix criticals when moving file to trash
|
|
|
99600e |
|
|
|
99600e |
The "gtk_revealer_get_transition_type: assertion 'GTK_IS_REVEALER (revealer)'
|
|
|
99600e |
failed" critical is printed when moving file to trash after closing a window.
|
|
|
99600e |
This is because the "undo-changed" signal handler is not disconnected when
|
|
|
99600e |
the window is destroyed. Let's use g_signal_connect_object() to ensure
|
|
|
99600e |
disconnection and prevent those criticals.
|
|
|
99600e |
|
|
|
99600e |
Fixes: https://gitlab.gnome.org/GNOME/nautilus/issues/1076
|
|
|
99600e |
---
|
|
|
99600e |
src/nautilus-window.c | 5 +++--
|
|
|
99600e |
1 file changed, 3 insertions(+), 2 deletions(-)
|
|
|
99600e |
|
|
|
99600e |
diff --git a/src/nautilus-window.c b/src/nautilus-window.c
|
|
|
99600e |
index 285a6a6ce..056c75c7a 100644
|
|
|
99600e |
--- a/src/nautilus-window.c
|
|
|
99600e |
+++ b/src/nautilus-window.c
|
|
|
99600e |
@@ -2239,8 +2239,9 @@ nautilus_window_constructed (GObject *self)
|
|
|
99600e |
nautilus_window_set_up_sidebar (window);
|
|
|
99600e |
|
|
|
99600e |
|
|
|
99600e |
- g_signal_connect_after (nautilus_file_undo_manager_get (), "undo-changed",
|
|
|
99600e |
- G_CALLBACK (nautilus_window_on_undo_changed), self);
|
|
|
99600e |
+ g_signal_connect_object (nautilus_file_undo_manager_get (), "undo-changed",
|
|
|
99600e |
+ G_CALLBACK (nautilus_window_on_undo_changed), self,
|
|
|
99600e |
+ G_CONNECT_AFTER);
|
|
|
99600e |
|
|
|
99600e |
/* Is required that the UI is constructed before initializating the actions, since
|
|
|
99600e |
* some actions trigger UI widgets to show/hide. */
|
|
|
99600e |
--
|
|
|
99600e |
2.23.0
|
|
|
99600e |
|