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 ronpro@cox.net
Recipients
Date 2005-11-15.00:26:26
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
class HList in Tix.py is missing the method
info_bbox(); though according to the Tix website, it
exists and should return a list of coordinates for the
bounding box of the list entry whose path is passed
into the function as an argument.

I added the following bit of code to my python 2.4.2
final release build (Tix.py, line 961) and find that it
seems to work just fine.

    def info_bbox( self, entry ):
       coords = self.tk.call( self._w, 'info', 'bbox',
entry ).split( ' ')
       return map( int, coords )

I've attached the modified file for examination.
History
Date User Action Args
2008-01-20 09:58:16adminlinkissue1356969 messages
2008-01-20 09:58:16admincreate