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

Method minimize

PySimpleGUI/PySimpleGUI.py:11256–11266  ·  view source on GitHub ↗

Minimize this window to the task bar

(self)

Source from the content-addressed store, hash-verified

11254 self.move(x, y)
11255
11256 def minimize(self):
11257 """
11258 Minimize this window to the task bar
11259 """
11260 if not self._is_window_created('tried Window.minimize'):
11261 return
11262 if self.use_custom_titlebar is True:
11263 self._custom_titlebar_minimize()
11264 else:
11265 self.TKroot.iconify()
11266 self.maximized = False
11267
11268 def maximize(self):
11269 """

Callers 3

minimize_main_windowFunction · 0.95
dummy_minimized_windowFunction · 0.95
dummy_minimized_windowFunction · 0.95

Calls 2

_is_window_createdMethod · 0.95

Tested by

no test coverage detected