Paul McNett wrote: > Sibylle Koczian wrote: >> Seems to be line 2290: >> intersect = wx.IntersectRect(updateBox, headerRect) >> >> If I enclose this and only this line between the two print statements, >> only the first one is printed, then the application crashes. > > Ok, please change the first print statement to: > > print updateBox, headerRect > > and let me know the output!
Also, it could help to know if a non-Dabo case can force this problem. Can you open a terminal and start a python interpreter and type: >>> import wx >>> app = wx.App() >>> rect1 = wx.Rect(0, 50, 10, 100) >>> rect2 = wx.Rect(0, 25, 50, 200) >>> wx.IntersectRect(rect1, rect2) wx.Rect(0, 50, 10, 100) and also change that print statement above to: print updateBox, type(updateBox), headerRect, type(headerRect) Thanks! Paul _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[EMAIL PROTECTED]
