remove isVisible check for "wait for next hand to rejoin" msg

This commit is contained in:
doitux
2012-01-02 14:24:35 +00:00
parent 088b145a6a
commit a69e05d0e3
@@ -402,7 +402,7 @@ void gameLobbyDialogImpl::refresh(int actionID)
} else if(actionID == MSG_NET_GAME_CLIENT_SYNCSTART) {
waitStartGameMsgBoxTimer->start(2000);
} else if(actionID == MSG_NET_GAME_CLIENT_SYNCREJOIN) {
if(this->isVisible()) {
// if(this->isVisible()) { //TODO <-- does it work without isVisible???
//break the autoStartTimer animation
autoStartTimer->stop();
autoStartTimerOverlay->hide();
@@ -411,7 +411,7 @@ void gameLobbyDialogImpl::refresh(int actionID)
waitRejoinStartGameMsgBox->raise();
waitRejoinStartGameMsgBox->activateWindow();
pushButton_Leave->setDisabled(true);
}
// }
}
}