Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--activity.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/activity.py b/activity.py
index 407e6c4..38b4270 100644
--- a/activity.py
+++ b/activity.py
@@ -188,9 +188,9 @@ class MemorizeActivity(Activity):
if self.play_mode == False:
self.hbox.remove(self.createcardpanel)
self.hbox.remove(self.cardlist)
-
- self.hbox.pack_start(self.scoreboard)
- self.hbox.pack_start(self.table, False)
+ if self.play_mode in (False, None):
+ self.hbox.pack_start(self.scoreboard)
+ self.hbox.pack_start(self.table, False)
self.play_mode = True
def restart(self, widget):