Disable Cmd+H shortcut for shuffle on Mac as it conflicts with the default hide action.

I haven't replaced the shortcut with anything else yet as it's not obvious what it should be.

Fixed issue #523
This commit is contained in:
John Maguire 2010-07-26 12:05:50 +00:00
parent 41d1facd9f
commit a55ee16c3d
1 changed files with 4 additions and 0 deletions

View File

@ -399,6 +399,10 @@ MainWindow::MainWindow(NetworkAccessManager* network, Engine::Type engine, QWidg
playlist_menu_->addAction(ui_->action_clear_playlist);
playlist_menu_->addAction(ui_->action_shuffle);
#ifdef Q_OS_DARWIN
ui_->action_shuffle->setShortcut(QKeySequence());
#endif
playlist_delete_->setVisible(false); // TODO
connect(ui_->playlist, SIGNAL(UndoRedoActionsChanged(QAction*,QAction*)),