aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);