diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2010-11-14 21:06:54 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2010-11-14 21:06:54 +0000 |
| commit | 2295f52f60451b514bcb125c17a9108af8f457a5 (patch) | |
| tree | db38cbb0142d7498caf95f7cc42301be596837cf /src/ui/actionmanager.cpp | |
| parent | 711b206b832e075e52c5da73f6b21c8369b23ac4 (diff) | |
| download | qmmp-2295f52f60451b514bcb125c17a9108af8f457a5.tar.gz qmmp-2295f52f60451b514bcb125c17a9108af8f457a5.tar.bz2 qmmp-2295f52f60451b514bcb125c17a9108af8f457a5.zip | |
added 'show playlist' and 'show equalizer' hotkeys
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1986 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/ui/actionmanager.cpp')
| -rw-r--r-- | src/ui/actionmanager.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/ui/actionmanager.cpp b/src/ui/actionmanager.cpp index ef9ebe1ce..c52c4955e 100644 --- a/src/ui/actionmanager.cpp +++ b/src/ui/actionmanager.cpp @@ -50,6 +50,8 @@ ActionManager::ActionManager(QObject *parent) : tr("Ctrl+S")); m_actions[CLEAR_QUEUE] = createAction(tr("&Clear Queue"), "clear_queue", tr("Alt+Q")); //view + m_actions[SHOW_PLAYLIST] = createAction2(tr("Show Playlist"), "show_playlist", tr("Alt+E")); + m_actions[SHOW_EQUALIZER] = createAction2(tr("Show Equalizer"), "show_equalizer", tr("Alt+G")); m_actions[WM_ALLWAYS_ON_TOP] = createAction2(tr("Always on Top"), "always_on_top", ""); m_actions[WM_STICKY] = createAction2(tr("Put on All Workspaces"), "General/always_on_top", ""); m_actions[WM_DOUBLE_SIZE] = createAction2(tr("Double Size"), "double_size", ""); @@ -74,12 +76,8 @@ ActionManager::ActionManager(QObject *parent) : "dialog-information"); m_actions[PL_NEW] = createAction(tr("&New List"), "new_pl", tr("Ctrl+T"), "document-new"); m_actions[PL_CLOSE] = createAction(tr("&Delete List"), "close_pl", tr("Ctrl+W"), "window-close"); - m_actions[PL_LOAD] = createAction(tr("&Load List"), "load_pl", tr("O"), "document-open"); - m_actions[PL_SAVE] = createAction(tr("&Save List"), "save_pl", tr("Shift+S"), "document-save-as"); - - m_actions[PL_SELECT_NEXT] = createAction(tr("&Select Next Playlist"), "next_pl", tr("Ctrl+PgDown"), "go-next"); m_actions[PL_SELECT_PREVIOUS] = createAction(tr("&Select Previous Playlist"), "prev_pl", |
