aboutsummaryrefslogtreecommitdiffstats
path: root/src/bookmarks/ephy-bookmarks-editor.c
diff options
context:
space:
mode:
authorXan Lopez <xan@src.gnome.org>2003-03-25 03:18:32 +0800
committerXan Lopez <xan@src.gnome.org>2003-03-25 03:18:32 +0800
commit1b741a09f48f593702e998d83bd11b8ce4dd1793 (patch)
treef089fc8ff965807306a3f68966610c39266a24b4 /src/bookmarks/ephy-bookmarks-editor.c
parentbb4528f9eef4b9417a4d7a2c7c012d8a3136170a (diff)
downloadgsoc2013-epiphany-1b741a09f48f593702e998d83bd11b8ce4dd1793.tar
gsoc2013-epiphany-1b741a09f48f593702e998d83bd11b8ce4dd1793.tar.gz
gsoc2013-epiphany-1b741a09f48f593702e998d83bd11b8ce4dd1793.tar.bz2
gsoc2013-epiphany-1b741a09f48f593702e998d83bd11b8ce4dd1793.tar.lz
gsoc2013-epiphany-1b741a09f48f593702e998d83bd11b8ce4dd1793.tar.xz
gsoc2013-epiphany-1b741a09f48f593702e998d83bd11b8ce4dd1793.tar.zst
gsoc2013-epiphany-1b741a09f48f593702e998d83bd11b8ce4dd1793.zip
s/EPHY_NODE_KEYWORD_PROP_ALL_PRIORITY/EPHY_NODE_KEYWORD_PROP_PRIORITY/ Add
s/EPHY_NODE_KEYWORD_PROP_ALL_PRIORITY/EPHY_NODE_KEYWORD_PROP_PRIORITY/ Add a "Most Visited" topic, featuring the 10 most visited bookmarks. Now special topics are bold too.
Diffstat (limited to 'src/bookmarks/ephy-bookmarks-editor.c')
-rw-r--r--src/bookmarks/ephy-bookmarks-editor.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c
index 0d8fcc442..558469981 100644
--- a/src/bookmarks/ephy-bookmarks-editor.c
+++ b/src/bookmarks/ephy-bookmarks-editor.c
@@ -570,6 +570,11 @@ ephy_bookmarks_editor_construct (EphyBookmarksEditor *editor)
const char *icon_path;
int i;
+ gtk_window_set_title (GTK_WINDOW (editor), _("Bookmarks"));
+
+ icon_path = ephy_file ("epiphany-bookmarks.png");
+ gtk_window_set_icon_from_file (GTK_WINDOW (editor), icon_path, NULL);
+
g_signal_connect (editor, "delete_event",
G_CALLBACK (delete_event_cb), NULL);
@@ -596,11 +601,6 @@ ephy_bookmarks_editor_construct (EphyBookmarksEditor *editor)
editor->priv->ui_merge = ui_merge;
editor->priv->action_group = action_group;
- icon_path = ephy_file ("epiphany-bookmarks.png");
- gtk_window_set_icon_from_file (GTK_WINDOW (editor), icon_path, NULL);
- gtk_window_set_title (GTK_WINDOW (editor), _("Bookmarks"));
- gtk_widget_set_size_request (GTK_WIDGET (editor), 500, 450);
-
hbox = gtk_hbox_new (FALSE, 6);
gtk_container_set_border_width (GTK_CONTAINER (hbox), 6);
gtk_container_add (GTK_CONTAINER (editor->priv->menu_dock), hbox);