aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Bordoley <bordoley@msu.edu>2003-04-24 11:08:36 +0800
committerDave Bordoley <Bordoley@src.gnome.org>2003-04-24 11:08:36 +0800
commit8c83ceb4776c927353d7a235290c1fc2f9f34b1f (patch)
tree4077543e48997f5977ac83c53beb95194979b7ed
parent1ef28966ea5d1e0f075d808bc1adfce45a0ac78b (diff)
downloadgsoc2013-epiphany-8c83ceb4776c927353d7a235290c1fc2f9f34b1f.tar
gsoc2013-epiphany-8c83ceb4776c927353d7a235290c1fc2f9f34b1f.tar.gz
gsoc2013-epiphany-8c83ceb4776c927353d7a235290c1fc2f9f34b1f.tar.bz2
gsoc2013-epiphany-8c83ceb4776c927353d7a235290c1fc2f9f34b1f.tar.lz
gsoc2013-epiphany-8c83ceb4776c927353d7a235290c1fc2f9f34b1f.tar.xz
gsoc2013-epiphany-8c83ceb4776c927353d7a235290c1fc2f9f34b1f.tar.zst
gsoc2013-epiphany-8c83ceb4776c927353d7a235290c1fc2f9f34b1f.zip
Set spacing between a topic and the arrow to 6px.
2003-04-23 David Bordoley <bordoley@msu.edu> * src/bookmarks/ephy-topic-action.c: (create_tool_item): Set spacing between a topic and the arrow to 6px.
-rw-r--r--ChangeLog6
-rw-r--r--src/bookmarks/ephy-topic-action.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d58c994c8..2a2f09ab6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,12 @@
* src/bookmarks/ephy-topic-action.c: (create_tool_item):
+ Set spacing between a topic and the arrow to 6px.
+
+2003-04-23 David Bordoley <bordoley@msu.edu>
+
+ * src/bookmarks/ephy-topic-action.c: (create_tool_item):
+
Add a down arrow to topics in bm toolbars.
2003-04-23 Xan Lopez <xan@masilla.org>
diff --git a/src/bookmarks/ephy-topic-action.c b/src/bookmarks/ephy-topic-action.c
index 8028daac2..8755dfa8a 100644
--- a/src/bookmarks/ephy-topic-action.c
+++ b/src/bookmarks/ephy-topic-action.c
@@ -98,7 +98,7 @@ create_tool_item (EggAction *action)
arrow = gtk_arrow_new (GTK_ARROW_DOWN, GTK_SHADOW_NONE);
gtk_widget_show (arrow);
- hbox = gtk_hbox_new (FALSE, 0);
+ hbox = gtk_hbox_new (FALSE, 6);
gtk_widget_show (hbox);
gtk_container_add (GTK_CONTAINER (button), hbox);