M-v for version in ConsoleLayout.

This commit is contained in:
casey langen 2018-12-29 21:08:02 -08:00
parent 68762cd231
commit dc262c345e

View File

@ -57,7 +57,7 @@ void ConsoleLayout::OnItemActivated(cursespp::ListWindow* window, size_t index)
}
bool ConsoleLayout::KeyPress(const std::string& kn) {
if (kn == "^_") { /* ctrl+/ */
if (kn == "^_" || kn == "M-v") { /* ctrl+/ */
ToastOverlay::Show(u8fmt(_TSTR("console_version"), VERSION), -1);
return true;
}