Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/activity.py
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@member.fsf.org>2009-01-22 20:52:32 (GMT)
committer Aleksey Lim <alsroot@member.fsf.org>2009-01-22 20:52:32 (GMT)
commit7a6ea32a02bec001495e6fc8f7ceb4265bb9d6e9 (patch)
treef6a9b2cef2f5e5b59c2844bbf181ed4275e26991 /activity.py
parentc59a060c9a804d33c98177321e27d082a06cbe05 (diff)
make cardtable screen-resolution independent
Diffstat (limited to 'activity.py')
-rw-r--r--activity.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/activity.py b/activity.py
index 66f3bbe..ad357f5 100644
--- a/activity.py
+++ b/activity.py
@@ -114,8 +114,8 @@ class MemorizeActivity(Activity):
self._memorizeToolbar.connect('game_changed', self.game.change_game)
self.hbox = gtk.HBox(False)
- self.hbox.pack_start(self.scoreboard, False, False)
- self.hbox.pack_start(self.table)
+ self.hbox.pack_start(self.scoreboard)
+ self.hbox.pack_start(self.table, False)
self.set_canvas(self.hbox)
# connect to the in/out events of the memorize activity
@@ -188,8 +188,8 @@ class MemorizeActivity(Activity):
self.hbox.remove(self.createcardpanel)
self.hbox.remove(self.cardlist)
- self.hbox.pack_start(self.scoreboard, False, False)
- self.hbox.pack_start(self.table)
+ self.hbox.pack_start(self.scoreboard)
+ self.hbox.pack_start(self.table, False)
self.play_mode = True
def restart(self, widget):