Re: [wxVTK] 1.4 please!
Brought to you by:
malat
From: Sander N. <nie...@st...> - 2011-11-30 15:05:29
|
Hi Mathieu, I did a quick compare of the current wxVTK CVS with what we are using internally. There is currently one difference: The patch below is to fix a redrawing issue we encountered on Windows when windows got resized. It was something we fixed in September 2009, so I don't know the precise details anymore. I would appreciate it if you could include this patch for v1.4. Best regards, Sander Niemeijer --- cvs/wxVTKRenderWindowInteractor.cxx 2009-03-05 17:00:43.000000000 +0100 +++ new/wxVTKRenderWindowInteractor.cxx 2009-09-04 11:50:25.000000000 +0200 @@ -281,6 +281,9 @@ Size[1] = y; // and our RenderWindow's size RenderWindow->SetSize(x, y); +#if defined(__WXMSW__) + this->Refresh(); +#endif //__WXMSW__ } } } On 30 nov 2011, at 15:10, Mathieu Malaterre wrote: > Hi Tim, > > Ok will do. I'll do that on Friday. > > Everyone, > > Last call for integrating your patch in 1.4 release. You'll have to > wait another ~3yrs or so otherwise ;) > > Thanks ! > > On Wed, Nov 30, 2011 at 1:03 PM, Tim Hutton <tim...@gm...> > wrote: >> Hello, >> >> I've just been bitten by the fact that the 1.3 download (from 2008) >> is >> older than some of the fixes in the CVS head. Specifically: the Timer >> error has gone, and the Cocoa build wasn't working. I see there are >> around 8 downloads a week so presumably all of these people are being >> hit by these issues too! So please make a new download. >> >> And thankyou thankyou thankyou for maintaining wxVTK. I've been using >> it continuously for several years now. >> >> -- >> Tim Hutton - http://www.sq3.org.uk - http://profiles.google.com/tim.hutton/ >> >> ------------------------------------------------------------------------------ >> All the data continuously generated in your IT infrastructure >> contains a definitive record of customers, application performance, >> security threats, fraudulent activity, and more. Splunk takes this >> data and makes sense of it. IT sense. And common sense. >> http://p.sf.net/sfu/splunk-novd2d >> _______________________________________________ >> Wxvtk-users mailing list >> Wxv...@li... >> https://lists.sourceforge.net/lists/listinfo/wxvtk-users >> > > > > -- > Mathieu > > ------------------------------------------------------------------------------ > All the data continuously generated in your IT infrastructure > contains a definitive record of customers, application performance, > security threats, fraudulent activity, and more. Splunk takes this > data and makes sense of it. IT sense. And common sense. > http://p.sf.net/sfu/splunk-novd2d > _______________________________________________ > Wxvtk-users mailing list > Wxv...@li... > https://lists.sourceforge.net/lists/listinfo/wxvtk-users |