diff --git a/PySimpleGUI.py b/PySimpleGUI.py index 034a15dc..dc94abd5 100644 --- a/PySimpleGUI.py +++ b/PySimpleGUI.py @@ -2677,6 +2677,11 @@ class Window: def UnHide(self): self.TKroot.deiconify() + def Disapper(self): + self.TKroot.attributes('-alpha', 0) + + def Reappear(self): + self.TKroot.attributes('-alpha', 255) def __enter__(self): return self