From: Christian Dywan Date: Thu, 2 Sep 2010 22:21:03 +0000 (+0200) Subject: Use Alt+Shift+Left/ Right for Previous and Next actions X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=91328aef2e24e3261048a9610bf95f1e4ba45d2b;p=midori Use Alt+Shift+Left/ Right for Previous and Next actions Control+Left/ Right conflicts with text cursor movement. --- diff --git a/midori/midori-browser.c b/midori/midori-browser.c index 03f23a80..05c9b336 100644 --- a/midori/midori-browser.c +++ b/midori/midori-browser.c @@ -4932,11 +4932,11 @@ static const GtkActionEntry entries[] = NULL, "Right", N_("Go forward to the next page"), G_CALLBACK (_action_navigation_activate) }, { "Previous", GTK_STOCK_MEDIA_PREVIOUS, - NULL, "Left", + NULL, "Left", /* i18n: Visit the previous logical page, ie. in a forum or blog */ N_("Go to the previous sub-page"), G_CALLBACK (_action_navigation_activate) }, { "Next", GTK_STOCK_MEDIA_NEXT, - NULL, "Right", + NULL, "Right", /* i18n: Visit the following logical page, ie. in a forum or blog */ N_("Go to the next sub-page"), G_CALLBACK (_action_navigation_activate) }, { "Homepage", STOCK_HOMEPAGE,