aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYosef Or Boczko <yoseforb@gmail.com>2013-09-01 01:40:23 +0800
committerYosef Or Boczko <yoseforb@gmail.com>2013-09-01 01:40:23 +0800
commitc22bf5b758a617ece45985b98e33de6dbbdac6d6 (patch)
tree143137e286c4e16c3030bdca8fcfdc2ffbd54db9
parent6102aa2f2cc43cef06cd31a04a973bb618740855 (diff)
downloadgsoc2013-epiphany-c22bf5b758a617ece45985b98e33de6dbbdac6d6.tar
gsoc2013-epiphany-c22bf5b758a617ece45985b98e33de6dbbdac6d6.tar.gz
gsoc2013-epiphany-c22bf5b758a617ece45985b98e33de6dbbdac6d6.tar.bz2
gsoc2013-epiphany-c22bf5b758a617ece45985b98e33de6dbbdac6d6.tar.lz
gsoc2013-epiphany-c22bf5b758a617ece45985b98e33de6dbbdac6d6.tar.xz
gsoc2013-epiphany-c22bf5b758a617ece45985b98e33de6dbbdac6d6.tar.zst
gsoc2013-epiphany-c22bf5b758a617ece45985b98e33de6dbbdac6d6.zip
ephy-toolbar: Fix the margin on the left side of the separator
https://bugzilla.gnome.org/show_bug.cgi?id=707091
-rw-r--r--src/ephy-toolbar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-toolbar.c b/src/ephy-toolbar.c
index eaeb31f2c..8a8b190ab 100644
--- a/src/ephy-toolbar.c
+++ b/src/ephy-toolbar.c
@@ -268,9 +268,9 @@ ephy_toolbar_constructed (GObject *object)
gtk_widget_show_all (separator);
if (gtk_widget_get_direction (GTK_WIDGET (separator)) == GTK_TEXT_DIR_RTL)
- gtk_widget_set_margin_right (GTK_WIDGET (separator), 8);
+ gtk_widget_set_margin_right (GTK_WIDGET (separator), 6);
else
- gtk_widget_set_margin_left (GTK_WIDGET (separator), 8);
+ gtk_widget_set_margin_left (GTK_WIDGET (separator), 6);
button = gtk_button_new_from_icon_name ("window-close-symbolic",
GTK_ICON_SIZE_MENU);