diff --git a/src/musikbox/app/layout/MainLayout.cpp b/src/musikbox/app/layout/MainLayout.cpp index f46266418..f95af0e8c 100755 --- a/src/musikbox/app/layout/MainLayout.cpp +++ b/src/musikbox/app/layout/MainLayout.cpp @@ -135,7 +135,8 @@ void MainLayout::SetMainLayout(std::shared_ptr layout) { bool MainLayout::KeyPress(const std::string& key) { if (prefs->GetBool(box::prefs::keys::EscFocusesShortcuts)) { if (key == "^[" || - (key == "KEY_UP" && this->shortcutsFocused)) + (key == "KEY_ENTER" && this->shortcutsFocused) || + (key == "KEY_UP" && this->shortcutsFocused)) { this->shortcutsFocused = !this->shortcutsFocused;