diff --git a/qt/topping_widget.cpp b/qt/topping_widget.cpp index 01ac865..078c3b2 100644 --- a/qt/topping_widget.cpp +++ b/qt/topping_widget.cpp @@ -149,8 +149,8 @@ void ToppingWidget::refresh() lineEditCoords->clear(); lineEditRack->setEnabled(true); lineEditTotalScore->setText(QString("%1").arg(m_game->getCurrentPlayer().getTotalScore())); - // Do not allow entering a move when displaying an old turn - setEnabled(m_game->isLastTurn()); + // Do not allow entering a move when displaying an old turn or if the game is finished + setEnabled(m_game->isLastTurn() && !m_game->isFinished()); } }