Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan Aguiar <alanjas@hotmail.com>2014-02-09 01:55:29 (GMT)
committer Alan Aguiar <alanjas@hotmail.com>2014-02-09 01:55:29 (GMT)
commit5a89c7d9cd6abdccdcd0369d95c966eb9afbcab4 (patch)
tree0e8e1afb66298aa0245b07119c33b7f1e0b58ea7
parentfa87e2f4ba79f1b384f7a4c02cc592f846156331 (diff)
fix red flash in true-false buttons a1g3
-rw-r--r--src/game/Area1Game3.py2
1 files changed, 2 insertions, 0 deletions
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