qt: testmode: Disable animation

This commit is contained in:
Calcitem 2021-01-10 22:00:12 +08:00
parent 0734b1fa82
commit 10f7937301
1 changed files with 4 additions and 0 deletions

View File

@ -215,6 +215,10 @@ void MillGameWindow::initialize()
connect(ui.actionAnimation_A, SIGNAL(toggled(bool)),
game, SLOT(setAnimation(bool)));
#ifdef TEST_MODE
ui.actionAnimation_A->setChecked(false);
#endif // TEST_MODE
connect(ui.actionResignIfMostLose_G, SIGNAL(toggled(bool)),
game, SLOT(setResignIfMostLose(bool)));