From a9ca26a4577c9a2a3a3b86d7834060cf6c19e2de Mon Sep 17 00:00:00 2001 From: MikeTheWatchGuy <13696193+MikeTheWatchGuy@users.noreply.github.com> Date: Wed, 2 Jan 2019 17:18:28 -0500 Subject: [PATCH] Revert "Fixed default Icon not working for Popups" --- PySimpleGUI.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PySimpleGUI.py b/PySimpleGUI.py index ba5aa9d7..e14b2285 100644 --- a/PySimpleGUI.py +++ b/PySimpleGUI.py @@ -3420,7 +3420,7 @@ class Window: self.Font = font if font else DEFAULT_FONT self.RadioDict = {} self.BorderDepth = border_depth - self.WindowIcon = Window.user_defined_icon if Window.user_defined_icon is not None else icon if icon is not None else DEFAULT_WINDOW_ICON + self.WindowIcon = icon if icon is not None else Window.user_defined_icon self.AutoClose = auto_close self.NonBlocking = False self.TKroot = None