Mono: Fixed unbound debugger shortcuts being triggered by pressing the windows key
This commit is contained in:
parent
e4a28625f5
commit
7852d6f75c
1 changed files with 3 additions and 1 deletions
|
@ -39,7 +39,9 @@ namespace Mesen.GUI.Forms
|
|||
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
|
||||
{
|
||||
bool processed = false;
|
||||
OnProcessCmdKey?.Invoke(keyData, ref processed);
|
||||
if(keyData != Keys.None) {
|
||||
OnProcessCmdKey?.Invoke(keyData, ref processed);
|
||||
}
|
||||
return processed || base.ProcessCmdKey(ref msg, keyData);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue