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.
This commit is contained in:
Tobias Doerffel
2012-11-03 19:37:28 +01:00
parent 929b44f14b
commit 2c3e7483aa

View File

@@ -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" ),