Dialog window cannot be seen on Windows

Issue #65 new
Doug Blank created an issue

When you run the following code on Windows 7, the input window cannot be seen:

from Graphics import *
win = Window (500,500)
print (input("Enter something"))

Here is a work-around:

from Graphics import *
win = Window (500,500)
win.KeepAbove = False
print (input("Enter something"))

Comments (0)

  1. Log in to comment