Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/abacus_window.py
diff options
context:
space:
mode:
authorWalter Bender <walter.bender@gmail.com>2011-08-03 23:27:29 (GMT)
committer Walter Bender <walter.bender@gmail.com>2011-08-03 23:27:29 (GMT)
commiteca0e0cb086ab11a5625bc298dcab26018a86992 (patch)
treeac344785c45b496fa3bfc997d8339f05cc5e09f5 /abacus_window.py
parentcbdf6fefa22d2d739afc4c6bbcae194a23e85b47 (diff)
scaling up to use a bit more of the canvas
Diffstat (limited to 'abacus_window.py')
-rw-r--r--abacus_window.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/abacus_window.py b/abacus_window.py
index 46ac07c..e1070f1 100644
--- a/abacus_window.py
+++ b/abacus_window.py
@@ -300,7 +300,7 @@ class Abacus():
self.width = gtk.gdk.screen_width()
self.height = gtk.gdk.screen_height() - GRID_CELL_SIZE
self.sprites = Sprites(self.canvas)
- self.scale = gtk.gdk.screen_height() / 900.0
+ self.scale = 1.33 * gtk.gdk.screen_height() / 900.0
self.dragpos = 0
self.press = None
self.last = None