Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/turtleblocks.py
diff options
context:
space:
mode:
authorPootle daemon <pootle@pootle.sugarlabs.org>2012-12-06 05:30:37 (GMT)
committer Pootle daemon <pootle@pootle.sugarlabs.org>2012-12-06 05:30:37 (GMT)
commit1f24491db53c4d9a55cc3ab6e7dd9987c3c0ceeb (patch)
treecb0734bac478ec2af21f8755522e95c1f1df25df /turtleblocks.py
parentc9e5ec50ca924a9ae95e4ba9a2f54480c024bcdc (diff)
parent5d393dff9f0b00961da8ec5abc0b90329bcb02c0 (diff)
Merge branch 'master' of git.sugarlabs.org:turtleart/mainline
Diffstat (limited to 'turtleblocks.py')
-rwxr-xr-xturtleblocks.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/turtleblocks.py b/turtleblocks.py
index 938625c..dcd4d99 100755
--- a/turtleblocks.py
+++ b/turtleblocks.py
@@ -312,8 +312,6 @@ class TurtleMain():
''' Create a scrolled window to contain the turtle canvas. We
add a Fixed container in order to position text Entry widgets
on top of string and number blocks.'''
- # vbox = gtk.VBox(False, 0)
- # win.add(vbox)
self.fixed = gtk.Fixed()
self.fixed.connect('size-allocate', self._fixed_resize_cb)
@@ -342,7 +340,6 @@ class TurtleMain():
self.fixed.put(self.vbox, 0, 0)
self.fixed.show()
- # vbox.pack_start(self.fixed, False, False, 0)
win.add(self.fixed)
win.show_all()
self.win = win