From 5a89c7d9cd6abdccdcd0369d95c966eb9afbcab4 Mon Sep 17 00:00:00 2001 From: Alan Aguiar Date: Sun, 09 Feb 2014 01:55:29 +0000 Subject: fix red flash in true-false buttons a1g3 --- diff --git a/src/game/Area1Game3.py b/src/game/Area1Game3.py index 107ac7a..8370d94 100644 --- a/src/game/Area1Game3.py +++ b/src/game/Area1Game3.py @@ -229,6 +229,7 @@ class CArea1Game3(CGameState): CGame().removeChild(self.mLabelQuestion) CGame().removeChild(self.mButtonTrue) CGame().removeChild(self.mButtonFalse) + self.mButtonTrue.set_bgColor(NORMAL_COLOR) if self.mTupleQuestion[1] == True: CGame().addChild(self.mDialogGood) self.mGood = self.mGood + 1 @@ -244,6 +245,7 @@ class CArea1Game3(CGameState): CGame().removeChild(self.mLabelQuestion) CGame().removeChild(self.mButtonTrue) CGame().removeChild(self.mButtonFalse) + self.mButtonFalse.set_bgColor(NORMAL_COLOR) if self.mTupleQuestion[1] == False: CGame().addChild(self.mDialogGood) self.mGood = self.mGood + 1 -- cgit v0.9.1