[[ This group prefers bottom-posting. Seehttp://idallen.com/topposting.htmlandhttp://www.caliburn.nl/topposting.html]]
> Ah, yikes though. My application, which does fine in the 2.8.11
> branch, behaves extremely erratically with the 2.9 version (I
> installed the mac binary for Python 2.6, and my python version on the
> mac is the one from python.org).
Which version of OSX and how powerful is your Mac's processor, etc.?
I'm still running 10.6.2
> It's bizarre...I'm still trying to figure out where the slowdown is
> coming from, but it's almost like run-time importing is being
> affected. Dropping back to 2.8.11 gives me none of these
> problems....
Does the demo have the same problems? Are you doing a lot of drawing
with wx.ClientDC's? Anything else that you are doing a lot of that
other applications probably don't?
> also the virtual list ctrl's header is drawn on top of the
> actual data in the list.
It looks okay here with both the carbon and cocoa builds.
No on the drawing; the weird thing is that there's a major slowdown
during a computational part of the program where I'm showing a
wx.ProgressDialog. After working with things for quite a while last
night, the only thing that I found out was that by removing the call
to Update() for the progress dialog, things returned to normal (albiet
with no progress dlg functionality).
The other thing was that, very weirdly, clicking on things in an
ultimatetreectrl took a long time to register; also, strange dots
appeared in the checkboxes in the tree control.
As far as the misdrawn virtual list ctrl goes, it is basically a pane
within an AUI. I'm going to try putting the list ctrl on a panel, and
then putting the panel within the AUI to see if that makes a
difference. I did see that a virtual list ctrl was drawn just fine in
the wxDemo. It looks, to my untrained eye, that the list ctrl was
drawn first, and then the titlebar for the AUI pane was just drawn
over it. Resizing the AUI pane also did not resize the list ctrl
inside, but that might be a bug on my part, even though it works fine
in 2.8.11.
I'm still working to reduce the problems down to a small code; I
apologize for the extreme vagueness in the description of these
problems. The only reason that I upgraded to 2.9 was to get a fixed
wx.FontDialog, and then things kind of went haywire after that
···
On Nov 10, 12:07 am, Robin Dunn <ro...@alldunn.com> wrote:
On 11/9/10 7:01 PM, dhyams wrote: