From 4cc6ec5b6789005d32923ee38e775a2c66d9bfa4 Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Sun, 3 Apr 2011 22:23:57 +0200 Subject: [PATCH] Change Quit shortcut to Ctrl+Shift+Q It is too easy to accidentally hit Ctrl+Q while aiming for Ctrl+A or Ctrl+W, and potentially very confusing if unexpected. Fixes: https://bugs.launchpad.net/bugs/748364 --- midori/midori-browser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/midori/midori-browser.c b/midori/midori-browser.c index 7f3933b4..f812335a 100644 --- a/midori/midori-browser.c +++ b/midori/midori-browser.c @@ -4917,7 +4917,7 @@ static const GtkActionEntry entries[] = NULL, "p", N_("Print the current page"), G_CALLBACK (_action_print_activate) }, { "Quit", GTK_STOCK_QUIT, - NULL, "q", + NULL, "q", N_("Quit the application"), G_CALLBACK (_action_quit_activate) }, { "Edit", NULL, N_("_Edit"), NULL, NULL, G_CALLBACK (_action_edit_activate) },