Swap out deprecated Iconized for IsIconized in python

Supported since wx 3.0, wxpython seems to have dropped it
This commit is contained in:
Marek Roszko 2022-09-19 20:29:39 -04:00
parent 30a4d3d2de
commit 7e089182b8
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ class KiCadPyFrame():
def OnIconize(self, event):
"""Event handler for Iconize."""
self.iconized = event.Iconized()
self.iconized = event.IsIconized()
def __createMenus(self):