1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-17 15:46:05 +02:00

Console fixes

This commit is contained in:
Brian Fiete 2024-07-25 11:12:43 +02:00
parent fa015e314d
commit d32c8212a9
3 changed files with 24 additions and 14 deletions

View file

@ -740,11 +740,14 @@ class ConsolePanel : Panel
public void SysKeyDown(KeyDownEvent keyEvent)
{
if (Paused)
if (!keyEvent.mKeyCode.IsModifier)
{
mSelection = null;
Paused = false;
return;
if (Paused)
{
mSelection = null;
Paused = false;
return;
}
}
if (mView.mHasFocus)