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:
Robin Dunn
2013-04-20 21:16:59 +00:00
parent e3269e1ff8
commit 32a99226bb

View File

@@ -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