Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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