Fixed user submitted bug in setting icon in FlexForm init
This commit is contained in:
parent
83ef563025
commit
5646ff8786
|
@ -1827,9 +1827,7 @@ class FlexForm:
|
||||||
self.Font = font if font else DEFAULT_FONT
|
self.Font = font if font else DEFAULT_FONT
|
||||||
self.RadioDict = {}
|
self.RadioDict = {}
|
||||||
self.BorderDepth = border_depth
|
self.BorderDepth = border_depth
|
||||||
# self.WindowIcon = icon
|
self.WindowIcon = icon if icon is not None else _my_windows.user_defined_icon
|
||||||
# self.WindowIcon = icon if icon else icon_tempfile
|
|
||||||
self.WindowIcon = icon if not None else _my_windows.user_defined_icon
|
|
||||||
self.AutoClose = auto_close
|
self.AutoClose = auto_close
|
||||||
self.NonBlocking = False
|
self.NonBlocking = False
|
||||||
self.TKroot = None
|
self.TKroot = None
|
||||||
|
|
Loading…
Reference in New Issue