7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-20 08:31:40 +00:00

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

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):