From 5d3811afbed6fcac9e0ccc1a8cf301948de3398f Mon Sep 17 00:00:00 2001 From: doitux Date: Sat, 14 Mar 2009 22:45:14 +0000 Subject: [PATCH] bugfix --- src/gui/qt/gametable/gametableimpl.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/qt/gametable/gametableimpl.cpp b/src/gui/qt/gametable/gametableimpl.cpp index 81e3aa76..681d57ce 100755 --- a/src/gui/qt/gametable/gametableimpl.cpp +++ b/src/gui/qt/gametable/gametableimpl.cpp @@ -929,14 +929,14 @@ void gameTableImpl::refreshAction(int playerID, int playerAction) { if (playerAction == 1) { // FOLD - if (playerID == 0 /*&& !myConfig->readConfigInt("AntiPeekMode")*/) { + if (playerID == 0) { holeCardsArray[0][0]->startFadeOut(10); holeCardsArray[0][1]->startFadeOut(10); - }/* + } else { holeCardsArray[playerID][0]->setPixmap(onePix, FALSE); holeCardsArray[playerID][1]->setPixmap(onePix, FALSE); - }*/ + } } } }