Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/game/Area1Game4.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/game/Area1Game4.py b/src/game/Area1Game4.py
index a3a7f73..d14c734 100644
--- a/src/game/Area1Game4.py
+++ b/src/game/Area1Game4.py
@@ -189,6 +189,12 @@ class CArea1Game4(CGameState):
return
if self.mLocalState == STATE_ANSWER:
+ for b in self.mButtonList:
+ if b.mouseOver():
+ b.set_bgColor(OVER_COLOR)
+ else:
+ b.set_bgColor(NORMAL_COLOR)
+
answer = -1
for i in range(6):
b = self.mButtonList[i]