mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-17 15:46:05 +02:00
Console fixes
This commit is contained in:
parent
fa015e314d
commit
d32c8212a9
3 changed files with 24 additions and 14 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue