Recognize the Enter key in the location entry.

This commit is contained in:
Christian Dywan 2008-03-30 20:32:01 +02:00
parent a482dc36a8
commit f4abaeb00f

View file

@ -1015,6 +1015,8 @@ midori_browser_location_key_press_event_cb (GtkWidget* widget,
{ {
switch (event->keyval) switch (event->keyval)
{ {
case GDK_ISO_Enter:
case GDK_KP_Enter:
case GDK_Return: case GDK_Return:
{ {
const gchar* uri = gtk_entry_get_text (GTK_ENTRY (widget)); const gchar* uri = gtk_entry_get_text (GTK_ENTRY (widget));