Blame SOURCES/fix-criticals-when-connecting-to-remote-locations.patch
|
|
af40a0 |
diff --git a/src/gtk/nautilusgtkplacesview.c b/src/gtk/nautilusgtkplacesview.c
|
|
|
af40a0 |
index de0610e52..b72085ba9 100644
|
|
|
af40a0 |
--- a/src/gtk/nautilusgtkplacesview.c
|
|
|
af40a0 |
+++ b/src/gtk/nautilusgtkplacesview.c
|
|
|
af40a0 |
@@ -401,6 +401,9 @@ nautilus_gtk_places_view_destroy (GtkWidget *widget)
|
|
|
af40a0 |
if (priv->network_monitor)
|
|
|
af40a0 |
g_signal_handlers_disconnect_by_func (priv->network_monitor, update_places, widget);
|
|
|
af40a0 |
|
|
|
af40a0 |
+ if (priv->server_list_monitor)
|
|
|
af40a0 |
+ g_signal_handlers_disconnect_by_func (priv->server_list_monitor, server_file_changed_cb, widget);
|
|
|
af40a0 |
+
|
|
|
af40a0 |
g_cancellable_cancel (priv->cancellable);
|
|
|
af40a0 |
g_cancellable_cancel (priv->networks_fetching_cancellable);
|
|
|
af40a0 |
|
|
|
af40a0 |
@@ -1405,6 +1407,7 @@ pulse_entry_cb (gpointer user_data)
|
|
|
af40a0 |
{
|
|
|
af40a0 |
gtk_entry_set_progress_pulse_step (GTK_ENTRY (priv->address_entry), 0.0);
|
|
|
af40a0 |
gtk_entry_set_progress_fraction (GTK_ENTRY (priv->address_entry), 0.0);
|
|
|
af40a0 |
+ priv->entry_pulse_timeout_id = 0;
|
|
|
af40a0 |
|
|
|
af40a0 |
return G_SOURCE_REMOVE;
|
|
|
af40a0 |
}
|