Merge pull request #1791 from PySimpleGUI/Dev-latest

Finally THE Fix that enables multiple windows to work right!
This commit is contained in:
MikeTheWatchGuy 2019-08-07 19:19:19 -04:00 committed by GitHub
commit 5c13dc9fa9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
#usr/bin/python3
version = __version__ = "0.30.0.0 Unreleased"
version = __version__ = "0.31.0.0 Unreleased"
import sys
import types
@ -3554,7 +3554,7 @@ class Window:
self.master_widget = None
print("new App instance %s" % str(id(self)))
# self.window.App = self
Window.App = self
#Window.App = self
self.lines_shown = []
if userdata2 is None: