summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2014-02-17 14:13:52 -0800
committerCosimo Cecchi <cosimoc@gnome.org>2014-02-17 14:13:52 -0800
commitb3b32f4afb5c1a5412b5fed80c8a0ed2ddef6e65 (patch)
tree064f9dbc294d0ef850e83204e2c7a5527b482029
parent2ce7cd67ef76079cf3634a5d5548be29f7eb2e64 (diff)
downloadnautilus-b3b32f4afb5c1a5412b5fed80c8a0ed2ddef6e65.tar.gz
slot: don't set spacing on extra location widgets vbox
https://bugzilla.gnome.org/show_bug.cgi?id=721647
-rw-r--r--src/nautilus-window-slot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nautilus-window-slot.c b/src/nautilus-window-slot.c
index 1d38503d1..a66d4b032 100644
--- a/src/nautilus-window-slot.c
+++ b/src/nautilus-window-slot.c
@@ -578,7 +578,7 @@ nautilus_window_slot_constructed (GObject *object)
GTK_ORIENTATION_VERTICAL);
gtk_widget_show (GTK_WIDGET (slot));
- extras_vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6);
+ extras_vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
slot->details->extra_location_widgets = extras_vbox;
gtk_box_pack_start (GTK_BOX (slot), extras_vbox, FALSE, FALSE, 0);
gtk_widget_show (extras_vbox);