Changed getDescription output: Alt -> Meta, System -> Super

This commit is contained in:
Elias Daler 2018-04-03 00:11:31 +03:00 committed by Lukas Dürrenberger
parent e430aa3106
commit 8850944f83

View file

@ -527,12 +527,12 @@ String KeyboardImpl::getDescription(Keyboard::Scancode code)
case Keyboard::ScanLControl: return "Control (Left)";
case Keyboard::ScanLShift: return "Shift (Left)";
case Keyboard::ScanLAlt: return "Alt (Left)";
case Keyboard::ScanLSystem: return "Meta (Left)";
case Keyboard::ScanLAlt: return "Meta (Left)";
case Keyboard::ScanLSystem: return "Super (Left)";
case Keyboard::ScanRControl: return "Control (Right)";
case Keyboard::ScanRShift: return "Shift (Right)";
case Keyboard::ScanRAlt: return "Alt (Right)";
case Keyboard::ScanRSystem: return "Meta (Right)";
case Keyboard::ScanRAlt: return "Meta (Right)";
case Keyboard::ScanRSystem: return "Super (Right)";
}
return "Unknown Scancode"; // no guess good enough possible.