Fix so that dialogs that use InputWidget can still close with Alt+F4
This commit is contained in:
parent
e220d62c54
commit
4b074b7d26
|
@ -145,6 +145,7 @@ namespace BizHawk.MultiClient
|
||||||
if (e.KeyCode == Keys.F4 && e.Modifiers == Keys.Alt)
|
if (e.KeyCode == Keys.F4 && e.Modifiers == Keys.Alt)
|
||||||
{
|
{
|
||||||
base.OnKeyDown(e);
|
base.OnKeyDown(e);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
e.Handled = true;
|
e.Handled = true;
|
||||||
}
|
}
|
||||||
|
@ -285,7 +286,10 @@ namespace BizHawk.MultiClient
|
||||||
|
|
||||||
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
|
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
|
||||||
{
|
{
|
||||||
return true;
|
if (keyData.ToString() == "F4" || keyData.ToString().Contains("Alt"))
|
||||||
|
return false;
|
||||||
|
else
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue