mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-07 12:30:07 +01:00
Patch from Joel Burton fixing iteration of dictionary items for Py3
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@73826 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -686,7 +686,7 @@ class MultiSplitterWindow(wx.PyPanel):
|
||||
return
|
||||
|
||||
# are there any pending size settings?
|
||||
for window, spos in self._pending.items():
|
||||
for window, spos in list(self._pending.items()):
|
||||
idx = self._windows.index(window)
|
||||
# TODO: this may need adjusted to make sure they all fit
|
||||
# in the current client size
|
||||
|
||||
Reference in New Issue
Block a user