MCPcopy Index your code
hub / github.com/PySimpleGUI/PySimpleGUI / reappear

Method reappear

PySimpleGUI/PySimpleGUI.py:11715–11721  ·  view source on GitHub ↗

Causes a window previously made to "Disappear" (using that method). Does this by restoring the alpha channel

(self)

Source from the content-addressed store, hash-verified

11713 self.TKroot.attributes('-alpha', 0)
11714
11715 def reappear(self):
11716 """
11717 Causes a window previously made to "Disappear" (using that method). Does this by restoring the alpha channel
11718 """
11719 if not self._is_window_created('tried Window.reappear'):
11720 return
11721 self.TKroot.attributes('-alpha', 255)
11722
11723 def set_alpha(self, alpha):
11724 """

Callers 4

test_menusFunction · 0.95
mainFunction · 0.95
mainFunction · 0.95

Calls 1

_is_window_createdMethod · 0.95

Tested by 1

test_menusFunction · 0.76