diff options
Diffstat (limited to 'src/bookmarks')
-rw-r--r-- | src/bookmarks/ephy-new-bookmark.c | 2 |
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; |