window.close() prevents future windows from being created

Issue #136 resolved
Keith O'Hara created an issue
from Graphics import * 
w = Window(600, 400) 
w.close() 
w = Window(600, 400)

Comments (2)

  1. Doug Blank

    Window.close() should also remove the title from Graphics._windows to make it so that it will be recreated next time.

    As a workaround (to get it back in view), you can say:

    w.Show()

    and you can see it again.

  2. Log in to comment