summaryrefslogtreecommitdiff
path: root/Lib/turtle.py
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2014-04-19 19:11:14 -0700
committerNed Deily <nad@acm.org>2014-04-19 19:11:14 -0700
commit09ae544ea3a6e33418ec8ab0100fc8288eef6d13 (patch)
tree34d30ed3f986b7c88ae9ba1c37ce3ee5e3bd1e4a /Lib/turtle.py
parentf31b4782084abef023d9ade3990385fb905a092f (diff)
downloadcpython-git-09ae544ea3a6e33418ec8ab0100fc8288eef6d13.tar.gz
Issue #11571: Ensure that the turtle window becomes the topmost window
when launched on OS X. (Original patch by Ronald Oussoren)
Diffstat (limited to 'Lib/turtle.py')
-rw-r--r--Lib/turtle.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/turtle.py b/Lib/turtle.py
index ab7b6ba42a..599f645fd0 100644
--- a/Lib/turtle.py
+++ b/Lib/turtle.py
@@ -109,6 +109,7 @@ import types
import math
import time
import inspect
+import sys
from os.path import isfile, split, join
from copy import deepcopy
@@ -992,6 +993,12 @@ class TurtleScreen(TurtleScreenBase):
self._colormode = _CFG["colormode"]
self._keys = []
self.clear()
+ if sys.platform == 'darwin':
+ # Force Turtle window to the front on OS X. This is needed because
+ # the Turtle window will show behind the Terminal window when you
+ # start the demo from the command line.
+ cv._rootwindow.call('wm', 'attributes', '.', '-topmost', '1')
+ cv._rootwindow.call('wm', 'attributes', '.', '-topmost', '0')
def clear(self):
"""Delete all drawings and all turtles from the TurtleScreen.