From: Alexander Butenko Date: Mon, 12 Oct 2009 21:17:57 +0000 (+0200) Subject: Void Page Up/ Page down in the address entry X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a62c9ee7a48095928790b0bc8320ec5f5cbbcfd;p=midori 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. --- 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;