Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/turtleblocks.py
diff options
context:
space:
mode:
Diffstat (limited to 'turtleblocks.py')
-rwxr-xr-xturtleblocks.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/turtleblocks.py b/turtleblocks.py
index 9947fe4..4fe4800 100755
--- a/turtleblocks.py
+++ b/turtleblocks.py
@@ -310,7 +310,6 @@ class TurtleMain():
if os.path.exists(os.path.join(self._execdirname, self._ICON_SUBPATH)):
win.set_icon_from_file(os.path.join(self._execdirname,
self._ICON_SUBPATH))
- win.show()
win.connect('delete_event', self._quit_ta)
''' Create a scrolled window to contain the turtle canvas. We
@@ -320,7 +319,7 @@ class TurtleMain():
self.fixed = gtk.Fixed()
self.fixed.connect('size-allocate', self._fixed_resize_cb)
width = gtk.gdk.screen_width() - 80
- height = gtk.gdk.screen_height() - 80
+ height = gtk.gdk.screen_height() - 60
self.fixed.set_size_request(width, height)
self.vbox = gtk.VBox(False, 0)