diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/bookmarks/ephy-topic-action.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -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); |