aboutsummaryrefslogtreecommitdiffstats
path: root/src/bookmarks
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-01-02 04:09:33 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-01-02 04:09:33 +0800
commit1d8491a1dcd425eaeeb39739fec95e892ba641d5 (patch)
tree5b673229f26985b427c52433e6d7731074963247 /src/bookmarks
parent2a830a379ab4c38b512ee521ccf10ba9cb28da53 (diff)
downloadgsoc2013-epiphany-1d8491a1dcd425eaeeb39739fec95e892ba641d5.tar
gsoc2013-epiphany-1d8491a1dcd425eaeeb39739fec95e892ba641d5.tar.gz
gsoc2013-epiphany-1d8491a1dcd425eaeeb39739fec95e892ba641d5.tar.bz2
gsoc2013-epiphany-1d8491a1dcd425eaeeb39739fec95e892ba641d5.tar.lz
gsoc2013-epiphany-1d8491a1dcd425eaeeb39739fec95e892ba641d5.tar.xz
gsoc2013-epiphany-1d8491a1dcd425eaeeb39739fec95e892ba641d5.tar.zst
gsoc2013-epiphany-1d8491a1dcd425eaeeb39739fec95e892ba641d5.zip
*** empty log message ***
Diffstat (limited to 'src/bookmarks')
-rw-r--r--src/bookmarks/ephy-new-bookmark.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bookmarks/ephy-new-bookmark.c b/src/bookmarks/ephy-new-bookmark.c
index ee0d4b983..2b282fd6e 100644
--- a/src/bookmarks/ephy-new-bookmark.c
+++ b/src/bookmarks/ephy-new-bookmark.c
@@ -186,6 +186,7 @@ build_editing_table (EphyNewBookmark *editor)
gtk_label_set_markup (GTK_LABEL (label), _("<b>Title:</b>"));
gtk_widget_show (label);
entry = gtk_entry_new ();
+ gtk_entry_set_activates_default (GTK_ENTRY (entry), TRUE);
editor->priv->title_entry = entry;
gtk_widget_set_size_request (entry, 200, -1);
gtk_widget_show (entry);
@@ -197,6 +198,7 @@ build_editing_table (EphyNewBookmark *editor)
gtk_label_set_markup (GTK_LABEL (label), _("<b>Keywords:</b>"));
gtk_widget_show (label);
entry = ephy_keywords_entry_new ();
+ gtk_entry_set_activates_default (GTK_ENTRY (entry), TRUE);
ephy_keywords_entry_set_bookmarks (EPHY_KEYWORDS_ENTRY (entry),
editor->priv->bookmarks);
editor->priv->keywords_entry = entry;