mirror of
https://github.com/libretro/Mesen.git
synced 2025-03-02 05:26:57 +00:00
Mono: Fixed unbound debugger shortcuts being triggered by pressing the windows key
This commit is contained in:
parent
b2a1d93c7f
commit
d738b2b9bf
@ -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…
x
Reference in New Issue
Block a user