From: Daniel Michalik Date: Mon, 7 Dec 2009 22:58:45 +0000 (+0100) Subject: Use more common Ctrl + Return to open a new tab from the location X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7c8030764250718ed5e0108ce0380cd24827cdd1;p=midori Use more common Ctrl + Return to open a new tab from the location --- diff --git a/midori/midori-locationaction.c b/midori/midori-locationaction.c index 6c06a0e2..d2617db3 100644 --- a/midori/midori-locationaction.c +++ b/midori/midori-locationaction.c @@ -571,7 +571,7 @@ midori_location_action_key_press_event_cb (GtkEntry* entry, if ((uri = gtk_entry_get_text (entry)) && *uri) { g_signal_emit (action, signals[SUBMIT_URI], 0, uri, - (event->state & GDK_MOD1_MASK) ? TRUE : FALSE); + (event->state & GDK_CONTROL_MASK) ? TRUE : FALSE); return TRUE; } }