From 2c3e7483aa0b78229c1dbe1f0f936979b2ade459 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Sat, 3 Nov 2012 19:37:28 +0100 Subject: [PATCH] MainWindow: fixed ambiguous hotkey for export operations The new export operation had the same hotkey as the classical one. This is not a good idea and is now fixed. --- 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 c725e9499..1a0602240 100644 --- a/src/gui/MainWindow.cpp +++ b/src/gui/MainWindow.cpp @@ -262,7 +262,7 @@ void MainWindow::finalize( void ) tr( "E&xport tracks..." ), engine::getSong(), SLOT( exportProjectTracks() ), - Qt::CTRL + Qt::Key_E ); + Qt::CTRL + Qt::SHIFT + Qt::Key_E ); project_menu->addSeparator(); project_menu->addAction( embed::getIconPixmap( "exit" ), tr( "&Quit" ),