Merge pull request #3052 from PySimpleGUI/Dev-latest

Removed extra copy of VisibilityChanged method.
This commit is contained in:
PySimpleGUI 2020-06-24 05:07:22 -04:00 committed by GitHub
commit e93be84e75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 8 deletions

View File

@ -7897,14 +7897,6 @@ class Window:
self.TKroot.unbind("<Pause>") self.TKroot.unbind("<Pause>")
self.DebuggerEnabled = False self.DebuggerEnabled = False
def VisibilityChanged(self):
"""
This is a completely dummy method that does nothing. It is here so that PySimpleGUIQt programs can make this
call and then have that same source run on plain PySimpleGUI.
:return:
"""
return
def set_title(self, title): def set_title(self, title):
""" """