diff --git a/src/musikcube/app/layout/SettingsLayout.cpp b/src/musikcube/app/layout/SettingsLayout.cpp index e8a4ca383..d58fa5405 100755 --- a/src/musikcube/app/layout/SettingsLayout.cpp +++ b/src/musikcube/app/layout/SettingsLayout.cpp @@ -37,6 +37,7 @@ #include #include #include +#include #include #include #include @@ -47,6 +48,7 @@ #include #include +#include #include #include #include @@ -718,6 +720,10 @@ bool SettingsLayout::KeyPress(const std::string& key) { return true; } } + if (key == "^_" || key == "M-v") { /* ctrl+/ */ + ToastOverlay::Show(u8fmt(_TSTR("console_version"), VERSION), -1); + return true; + } return LayoutBase::KeyPress(key); }