diff options
Diffstat (limited to 'src/bookmarks/ephy-bookmarks-editor.c')
-rw-r--r-- | src/bookmarks/ephy-bookmarks-editor.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c index 20756fd97..e50f5659e 100644 --- a/src/bookmarks/ephy-bookmarks-editor.c +++ b/src/bookmarks/ephy-bookmarks-editor.c @@ -523,7 +523,7 @@ bookmarks_filter (EphyBookmarksEditor *editor, ephy_node_filter_done_changing (editor->priv->bookmarks_filter); } -static void +static gboolean key_pressed_cb (GtkWidget *widget, GdkEventKey *event, EphyNodeView *view) @@ -533,11 +533,13 @@ key_pressed_cb (GtkWidget *widget, case GDK_Delete: case GDK_KP_Delete: ephy_node_view_remove (view); - break; + return TRUE; default: break; } + + return FALSE; } static void |