summaryrefslogtreecommitdiff
path: root/src/nautilus-floating-bar.c
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2011-02-14 17:18:23 -0500
committerCosimo Cecchi <cosimoc@gnome.org>2011-02-17 11:25:16 -0500
commitb75521b56f24bffa320ad7bb5bc61be6fa12cb96 (patch)
treeb1f7fb44551b15370582e130757da2f068b39813 /src/nautilus-floating-bar.c
parentb86054a34b9933180d9e847048a26d712505b04a (diff)
downloadnautilus-b75521b56f24bffa320ad7bb5bc61be6fa12cb96.tar.gz
floating-bar: add a bit more whitespace around the label
Diffstat (limited to 'src/nautilus-floating-bar.c')
-rw-r--r--src/nautilus-floating-bar.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/nautilus-floating-bar.c b/src/nautilus-floating-bar.c
index f6f45e855..29b58c029 100644
--- a/src/nautilus-floating-bar.c
+++ b/src/nautilus-floating-bar.c
@@ -197,7 +197,12 @@ nautilus_floating_bar_constructed (GObject *obj)
w = gtk_label_new (NULL);
gtk_box_pack_start (GTK_BOX (box), w, FALSE, FALSE, 0);
- gtk_widget_set_margin_right (w, 16);
+ g_object_set (w,
+ "margin-top", 6,
+ "margin-bottom", 6,
+ "margin-left", 6,
+ "margin-right", 6,
+ NULL);
self->priv->label_widget = w;
gtk_widget_show (w);
}