Commit 8450c533 authored by Terry Jan Reedy's avatar Terry Jan Reedy

Issue #22065: Menus, unlike Menubottons, do not have a state option.

Since a new demo can now be loaded while one is running,
adjust loadfile to do the same cleanup as stopIt.
parent cf261156
......@@ -260,12 +260,13 @@ class DemoWindow(object):
return menu
def refreshCanvas(self):
if not self.dirty: return
self.screen.clear()
self.dirty=False
if self.dirty:
self.screen.clear()
self.dirty=False
def loadfile(self, filename):
self.refreshCanvas()
self.clearCanvas()
turtle.TurtleScreen._RUNNING = False
modname = 'turtledemo.' + filename
__import__(modname)
self.module = sys.modules[modname]
......@@ -318,9 +319,7 @@ class DemoWindow(object):
self.exitflag = False
self.configGUI(NORMAL, NORMAL, DISABLED, DISABLED,
"STOPPED!", "red")
turtle.TurtleScreen._RUNNING = False
else:
turtle.TurtleScreen._RUNNING = False
turtle.TurtleScreen._RUNNING = False
def _destroy(self):
self.root.destroy()
......
......@@ -219,7 +219,7 @@ def main():
mainscreen.mode("standard")
mainscreen.setup(SCREENWIDTH, SCREENHEIGHT)
nim = Nim(mainscreen)
return "EVENTLOOP!"
return "EVENTLOOP"
if __name__ == "__main__":
main()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment