From 37fa46792a109ef7bfeab3e808fc04c3dd0a7e18 Mon Sep 17 00:00:00 2001 From: Vesa Date: Sat, 26 Jul 2014 14:46:30 +0300 Subject: [PATCH] Change redo shortcut from ctrl-r to ctrl-y Ctrl-y is more standard and used in many applications, ctrl-r is used pretty much nowhere. --- src/gui/MainWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/MainWindow.cpp b/src/gui/MainWindow.cpp index b3c873b68..aba422251 100644 --- a/src/gui/MainWindow.cpp +++ b/src/gui/MainWindow.cpp @@ -286,7 +286,7 @@ void MainWindow::finalize() edit_menu->addAction( embed::getIconPixmap( "edit_redo" ), tr( "Redo" ), this, SLOT( redo() ), - Qt::CTRL + Qt::Key_R ); + Qt::CTRL + Qt::Key_Y ); edit_menu->addSeparator(); edit_menu->addAction( embed::getIconPixmap( "setup_general" ), tr( "Settings" ),