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

Method un_hide

PySimpleGUI/PySimpleGUI.py:11687–11695  ·  view source on GitHub ↗

Used to bring back a window that was previously hidden using the Hide method

(self)

Source from the content-addressed store, hash-verified

11685 self.TKroot.withdraw()
11686
11687 def un_hide(self):
11688 """
11689 Used to bring back a window that was previously hidden using the Hide method
11690 """
11691 if not self._is_window_created('tried Window.un_hide'):
11692 return
11693 if self._Hidden:
11694 self.TKroot.deiconify()
11695 self._Hidden = False
11696
11697 def is_hidden(self):
11698 """

Callers 10

choose_themeFunction · 0.95
mainFunction · 0.95
mainFunction · 0.95
choose_themeFunction · 0.95
restore_main_windowFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
un_hideMethod · 0.45

Calls 1

_is_window_createdMethod · 0.95

Tested by

no test coverage detected