diff --git a/src/musikcube/cursespp/ListWindow.cpp b/src/musikcube/cursespp/ListWindow.cpp index 29f56cbea..94aa14c99 100755 --- a/src/musikcube/cursespp/ListWindow.cpp +++ b/src/musikcube/cursespp/ListWindow.cpp @@ -300,12 +300,14 @@ bool ListWindow::KeyPress(const std::string& key) { auto selected = this->GetSelectedIndex(); if (selected != NO_SELECTION) { this->OnEntryActivated(selected); + return true; } } else if (key == "M-enter") { auto selected = this->GetSelectedIndex(); if (selected != NO_SELECTION) { this->OnEntryContextMenu(selected); + return true; } } return ScrollableWindow::KeyPress(key);