diff --git a/mythplugins/mythmusic/mythmusic/main.cpp b/mythplugins/mythmusic/mythmusic/main.cpp
index ff36cc4..14e5515 100644
|
a
|
b
|
static void setupKeys(void)
|
| 604 | 604 | REG_KEY("Music", "SWITCHTOVISUALISER", QT_TRANSLATE_NOOP("MythControls", |
| 605 | 605 | "Switch to the fullscreen visualiser view"), ""); |
| 606 | 606 | |
| | 607 | REG_KEY("Music", "ADDTRACKSANDPLAY", QT_TRANSLATE_NOOP("MythControls", |
| | 608 | "Add selected tracks to playlist and start playback"), ""); |
| 607 | 609 | |
| 608 | 610 | #ifdef FIXME |
| 609 | 611 | // FIXME need to find a way to stop the media monitor jumping to the main menu before |
diff --git a/mythplugins/mythmusic/mythmusic/playlisteditorview.cpp b/mythplugins/mythmusic/mythmusic/playlisteditorview.cpp
index 9c730da..8684150 100644
|
a
|
b
|
bool PlaylistEditorView::keyPressEvent(QKeyEvent *event)
|
| 449 | 449 | if (item) |
| 450 | 450 | treeItemClicked(item); |
| 451 | 451 | } |
| 452 | | else if (action == "PLAY") |
| | 452 | else if (action == "ADDTRACKSANDPLAY") |
| 453 | 453 | { |
| 454 | 454 | int trackCount = gPlayer->getPlaylist()->getSongs().count(); |
| 455 | 455 | |