From 8a62c9ee7a48095928790b0bc8320ec5f5cbbcfd Mon Sep 17 00:00:00 2001 From: Alexander Butenko Date: Mon, 12 Oct 2009 23:17:57 +0200 Subject: [PATCH] Void Page Up/ Page down in the address entry It is presumably not an important binding, and accidentally using it is more annoying than helpful. --- midori/midori-locationentry.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/midori/midori-locationentry.c b/midori/midori-locationentry.c index 2c525699..eba3477c 100644 --- a/midori/midori-locationentry.c +++ b/midori/midori-locationentry.c @@ -409,6 +409,11 @@ entry_key_press_event (GtkWidget* widget, gtk_combo_box_popup (GTK_COMBO_BOX (location_entry)); return TRUE; } + case GDK_Page_Up: + case GDK_Page_Down: + { + return TRUE; + } } return FALSE;