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.
This commit is contained in:
Alexander Butenko 2009-10-12 23:17:57 +02:00 committed by Christian Dywan
parent 625ad79631
commit 8a62c9ee7a

View file

@ -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;