Browse Source

Update of formatPanelSizer.Show() item parm to wxPython4

Markus Neteler 5 years ago
parent
commit
223821e281
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gui/wxpython/animation/dialogs.py

+ 1 - 1
gui/wxpython/animation/dialogs.py

@@ -1368,7 +1368,7 @@ class ExportDialog(wx.Dialog):
 
 
     def ChangeFormat(self, index):
     def ChangeFormat(self, index):
         for i, panel in enumerate(self.formatPanels):
         for i, panel in enumerate(self.formatPanels):
-            self.formatPanelSizer.Show(item=panel, show=(i == index))
+            self.formatPanelSizer.Show(window=panel, show=(i == index))
         self.formatPanelSizer.Layout()
         self.formatPanelSizer.Layout()
 
 
     def OnFont(self, event):
     def OnFont(self, event):