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 ocean-city
Recipients Robert.Lerche, gpolo, ocean-city, terry.reedy
Date 2010-11-05.17:52:33
SpamBayes Score 0.00020708457
Marked as misclassified No
Message-id <1288979555.13.0.812827687679.issue10232@psf.upfronthosting.co.za>
In-reply-to
Content
I think issue4 happens because all frames are grid-forgotten
in redisp(), sometimes widget becomes empty. I think we can
close this issue as invalid.

P.S. Try this change in redisp()

        yy = 0
        for xx in self.frms[start:self.maxdisp+start]:
            xx.grid(in_=self,row=yy,column=0)
            yy += 1
        for xx in self.frms[self.active:self.maxdisp+self.active]:
            if xx in self.frms[start:self.maxdisp+start]:
                continue
            xx.grid_forget()
History
Date User Action Args
2010-11-05 17:52:35ocean-citysetrecipients: + ocean-city, terry.reedy, gpolo, Robert.Lerche
2010-11-05 17:52:35ocean-citysetmessageid: <1288979555.13.0.812827687679.issue10232@psf.upfronthosting.co.za>
2010-11-05 17:52:33ocean-citylinkissue10232 messages
2010-11-05 17:52:33ocean-citycreate