From a89d6b562d7f71d1c62bc192d64383305aece422 Mon Sep 17 00:00:00 2001 From: MikeTheWatchGuy Date: Tue, 16 Oct 2018 19:29:25 -0400 Subject: [PATCH] Minimize Window method --- PySimpleGUI.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PySimpleGUI.py b/PySimpleGUI.py index 38427878..5e9d3a52 100644 --- a/PySimpleGUI.py +++ b/PySimpleGUI.py @@ -2681,6 +2681,8 @@ class Window: except: pass + def Minimize(self): + self.TKroot.iconify() def StartMove(self, event):