Fixes #701. HotKeys fixed.

This commit is contained in:
BDisp
2020-07-15 17:31:07 +01:00
parent 21f58cf1c5
commit edac4b3d19

View File

@@ -153,7 +153,7 @@ namespace Terminal.Gui {
bool CheckKey (KeyEvent key)
{
if (key.Key == HotKey) {
if (key.Key == (Key.AltMask | HotKey)) {
this.SuperView.SetFocus (this);
Clicked?.Invoke ();
return true;