placesview: Always open default location after mounting

The default location (obtained over g_mount_get_default_location) is
opened after mounting volume, or when opening mounts from sidebar, but
not after mounting over "Connect to Server". Let's unify the behavior
and always open the default location.

https://gitlab.gnome.org/GNOME/nautilus/issues/1319
This commit is contained in:
Ondrej Holy
2019-12-19 16:49:07 +01:00
parent 08f7526f8f
commit 267ea7552b

View File

@@ -1243,7 +1243,21 @@ server_mount_ready_cb (GObject *source_file,
gtk_editable_set_text (GTK_EDITABLE (priv->address_entry), "");
if (priv->should_open_location)
emit_open_location (view, location, priv->open_flags);
{
GMount *mount;
GFile *root;
mount = g_file_find_enclosing_mount (location, priv->cancellable, NULL);
if (mount)
{
root = g_mount_get_default_location (mount);
emit_open_location (view, root, priv->open_flags);
g_object_unref (root);
g_object_unref (mount);
}
}
}
update_places (view);