-
Notifications
You must be signed in to change notification settings - Fork 24
/
file-chooser__places-sidebar.patch
58 lines (51 loc) · 2.2 KB
/
file-chooser__places-sidebar.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
--- a/gtk/gtkplacessidebar.c
+++ b/gtk/gtkplacessidebar.c
@@ -633,6 +633,7 @@ open_home (GtkPlacesSidebar *sidebar)
static void
add_special_dirs (GtkPlacesSidebar *sidebar)
{
+ return;
GList *dirs;
gint index;
@@ -1430,8 +1431,6 @@ update_places (GtkPlacesSidebar *sidebar
root = sl->data;
is_native = g_file_is_native (root);
- if (_gtk_bookmarks_manager_get_is_builtin (sidebar->bookmarks_manager, root))
- continue;
if (sidebar->local_only && !is_native)
continue;
@@ -1539,6 +1538,17 @@ update_places (GtkPlacesSidebar *sidebar
g_object_unref (start_icon);
}
+ else if (!sidebar->local_only)
+ {
+ start_icon = g_themed_icon_new_with_default_fallbacks (ICON_NAME_NETWORK);
+
+ add_place (sidebar, PLACES_BUILT_IN,
+ SECTION_OTHER_LOCATIONS,
+ _("Networks"), start_icon, NULL, "network:///",
+ NULL, NULL, NULL, NULL, 0, _("Show other locations"));
+
+ g_object_unref (start_icon);
+ }
gtk_widget_show_all (GTK_WIDGET (sidebar));
/* We want this hidden by default, but need to do it after the show_all call */
@@ -4158,7 +4168,7 @@ gtk_places_sidebar_init (GtkPlacesSideba
gtk_container_add (GTK_CONTAINER (sidebar), sidebar->list_box);
- sidebar->hostname = g_strdup (_("Computer"));
+ sidebar->hostname = g_strdup (_("File System"));
sidebar->hostnamed_cancellable = g_cancellable_new ();
g_dbus_proxy_new_for_bus (G_BUS_TYPE_SYSTEM,
G_DBUS_PROXY_FLAGS_GET_INVALIDATED_PROPERTIES,
--- a/gtk/ui/gtkfilechooserwidget.ui
+++ b/gtk/ui/gtkfilechooserwidget.ui
@@ -16,7 +16,8 @@
<property name="visible">1</property>
<property name="hscrollbar-policy">never</property>
<property name="local-only">1</property>
- <property name="show-other-locations">1</property>
+ <property name="show-other-locations">0</property>
+ <property name="show-trash">0</property>
<child internal-child="accessible">
<object class="AtkObject">
<property name="AtkObject::accessible-name" translatable="yes">Places</property>