Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tawindow.py
diff options
context:
space:
mode:
Diffstat (limited to 'tawindow.py')
-rw-r--r--tawindow.py6
1 files changed, 3 insertions, 3 deletions
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 \