Mono: Fixed unbound debugger shortcuts being triggered by pressing the windows key
This commit is contained in:
parent
b2a1d93c7f
commit
d738b2b9bf
1 changed files with 3 additions and 1 deletions
|
@ -74,7 +74,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