Fix keyboard shortcuts on actions in the playlist menu that aren't added anywhere else.

This commit is contained in:
David Sansome 2011-03-06 18:26:06 +00:00
parent 5672fa90e7
commit 961a97659e
1 changed files with 4 additions and 0 deletions

View File

@ -492,6 +492,10 @@ MainWindow::MainWindow(
ui_->action_shuffle->setShortcut(QKeySequence());
#endif
// We have to add the actions on the playlist menu to this QWidget otherwise
// their shortcut keys don't work
addActions(playlist_menu_->actions());
connect(ui_->playlist, SIGNAL(UndoRedoActionsChanged(QAction*,QAction*)),
SLOT(PlaylistUndoRedoChanged(QAction*,QAction*)));