[ python-Bugs-1250469 ] Tix: PanedWindow.panes nonfunctional
SourceForge.net
noreply at sourceforge.net
Tue Aug 2 20:52:55 CEST 2005
Bugs item #1250469, was opened at 2005-08-02 13:52
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1250469&group_id=5470
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Tkinter
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Majromax (majromax)
Assigned to: Martin v. Löwis (loewis)
Summary: Tix: PanedWindow.panes nonfunctional
Initial Comment:
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.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1250469&group_id=5470
More information about the Python-bugs-list
mailing list