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

Method hide

PySimpleGUI/PySimpleGUI.py:11678–11685  ·  view source on GitHub ↗

Hides the window from the screen and the task bar

(self)

Source from the content-addressed store, hash-verified

11676 # self.TKroot.grab_release()
11677
11678 def hide(self):
11679 """
11680 Hides the window from the screen and the task bar
11681 """
11682 if not self._is_window_created('tried Window.hide'):
11683 return
11684 self._Hidden = True
11685 self.TKroot.withdraw()
11686
11687 def un_hide(self):
11688 """

Callers 7

choose_themeFunction · 0.95
mainFunction · 0.95
mainFunction · 0.95
mainFunction · 0.95
choose_themeFunction · 0.95
mainFunction · 0.95
hideMethod · 0.45

Calls 1

_is_window_createdMethod · 0.95

Tested by

no test coverage detected