From 2b0e769d5c1fdf4c8e7142111b6e044bb13ca99a Mon Sep 17 00:00:00 2001 From: Walter Bender Date: Sat, 06 Mar 2010 13:29:38 +0000 Subject: using constants for orientation --- (limited to 'tawindow.py') diff --git a/tawindow.py b/tawindow.py index ac75ca2..6748688 100644 --- a/tawindow.py +++ b/tawindow.py @@ -119,11 +119,11 @@ class TurtleArtWindow(): if self._OLPC_XO_1(): self.lead = 1.0 self.scale = 0.67 - self.orientation = 1 + self.orientation = VERTICAL_PALETTE else: self.lead = 1.0 self.scale = 1.0 - self.orientation = 0 + self.orientation = HORIZONTAL_PALETTE self.block_scale = BLOCK_SCALE self.trash_scale = 0.5 self.myblock = None @@ -248,7 +248,7 @@ class TurtleArtWindow(): return False """ - Is the an OLPC XO-1? + Is the an OLPC XO-1 or XO-1.5? """ def _OLPC_XO_1(self): return os.path.exists('/etc/olpc-release') or \ -- cgit v0.9.1