Qt: Fix rewinding enabling the menu bar

This commit is contained in:
Jeffrey Pfau 2015-07-22 21:34:49 -07:00
parent da226abba6
commit e9c82df518
1 changed files with 4 additions and 0 deletions

View File

@ -519,7 +519,9 @@ void GameController::startRewinding() {
return;
}
m_wasPaused = isPaused();
bool signalsBlocked = blockSignals(true);
setPaused(true);
blockSignals(signalsBlocked);
m_rewindTimer.start();
}
@ -528,7 +530,9 @@ void GameController::stopRewinding() {
return;
}
m_rewindTimer.stop();
bool signalsBlocked = blockSignals(true);
setPaused(m_wasPaused);
blockSignals(signalsBlocked);
}
void GameController::keyPressed(int key) {