This commit is contained in:
zeromus 2012-09-10 04:16:30 +00:00
parent 3cd5bfe375
commit e87bddc2ee
1 changed files with 2 additions and 2 deletions

View File

@ -1642,13 +1642,13 @@ namespace BizHawk.MultiClient
if (c >= 'a' && c <= 'z' || c == ' ') if (c >= 'a' && c <= 'z' || c == ' ')
{ {
SendAltKeyChar(c); SendAltKeyChar(c);
sys_hotkey = true; //sys_hotkey = true;
} }
} }
if (ie.LogicalButton.Alt && ie.LogicalButton.Button == "Space") if (ie.LogicalButton.Alt && ie.LogicalButton.Button == "Space")
{ {
SendPlainAltKey(32); SendPlainAltKey(32);
sys_hotkey = true; //sys_hotkey = true;
} }
} }
//ordinarily, an alt release with nothing else would move focus to the menubar. but that is sort of useless, and hard to implement exactly right. //ordinarily, an alt release with nothing else would move focus to the menubar. but that is sort of useless, and hard to implement exactly right.