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:
parent
625ad79631
commit
8a62c9ee7a
1 changed files with 5 additions and 0 deletions
|
@ -409,6 +409,11 @@ entry_key_press_event (GtkWidget* widget,
|
||||||
gtk_combo_box_popup (GTK_COMBO_BOX (location_entry));
|
gtk_combo_box_popup (GTK_COMBO_BOX (location_entry));
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
case GDK_Page_Up:
|
||||||
|
case GDK_Page_Down:
|
||||||
|
{
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
Loading…
Reference in a new issue