diff --git a/src/gui/qt/gametable/gametableimpl.cpp b/src/gui/qt/gametable/gametableimpl.cpp index 823314cf..b5582413 100755 --- a/src/gui/qt/gametable/gametableimpl.cpp +++ b/src/gui/qt/gametable/gametableimpl.cpp @@ -2066,9 +2066,9 @@ void gameTableImpl::postRiverRunAnimation2() { } else { - //display show! button if human player is the latest non foldedone + //display show! button if human player is active and the latest non foldedone PlayerListIterator it = myStartWindow->getSession()->getCurrentGame()->getSeatsList()->begin(); - if( internetOrNetworkGame && (*it)->getMyAction() != PLAYER_ACTION_FOLD) { + if( internetOrNetworkGame && (*it)->getMyActiveStatus() && (*it)->getMyAction() != PLAYER_ACTION_FOLD) { showShowMyCardsButton(); } @@ -2322,7 +2322,7 @@ void gameTableImpl::showHoleCards(unsigned playerId, bool allIn) } //set Player value (logging) qDebug() << "currentHand->getCurrentRound()" << currentHand->getCurrentRound(); - if(currentHand->getCurrentRound() < 4 || allIn) { + if(currentHand->getCurrentRound() < 3 || allIn) { (*it_c)->setMyCardsFlip(1,2); //for bero before postriver or allin just log the hole cards } else { diff --git a/src/gui/qt/settingsdialog/settingsdialogimpl.cpp b/src/gui/qt/settingsdialog/settingsdialogimpl.cpp index 5b9f3456..a00919e3 100644 --- a/src/gui/qt/settingsdialog/settingsdialogimpl.cpp +++ b/src/gui/qt/settingsdialog/settingsdialogimpl.cpp @@ -1260,7 +1260,7 @@ void settingsDialogImpl::deleteLogFile() if(selectedItem) { int ret = QMessageBox::warning(this, tr("PokerTH - Log file"), - tr("Do you really want to delete the seleted log file?"), + tr("Do you really want to delete the selected log file?"), QMessageBox::Yes | QMessageBox::No); if(ret == QMessageBox::Yes) {