This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author majromax
Recipients
Date 2005-08-02.18:52:55
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Tix.PanedWindow.panes() is nonfunctional for any but
single-letter pane names; the culprit is the following
line of code from Tix.PanedWindow.panes:

names = self.tk.call(self._w, 'panes')

Since the Tk "panes" command returns a string, it is
not iterated over properly.  The fix is:

names = self.tk.split(self.tk.call(self._w, 'panes'))

Attached is error log from Python 2.4, Windows 2k.
History
Date User Action Args
2007-08-23 14:33:37adminlinkissue1250469 messages
2007-08-23 14:33:37admincreate