1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-29 23:07:48 +02:00

Do not trigger multiple hotkeys when battle window wait for any key

This commit is contained in:
Ivan Savenko
2023-05-07 20:03:57 +03:00
parent 61181d63bd
commit ecff5f3d12
2 changed files with 6 additions and 0 deletions

View File

@@ -186,6 +186,11 @@ void BattleWindow::deactivate()
LOCPLINT->cingconsole->deactivate();
}
bool BattleWindow::captureThisKey(EShortcut key)
{
return owner.openingPlaying();
}
void BattleWindow::keyPressed(EShortcut key)
{
if (owner.openingPlaying())