Remove the 'topSizer.Fit(self)' call at the end of __init__.
The base class is initialized to 600x380 then after that the Fit call
is resizing the frame. To fit the panels contents.
Regards,
Cody
Thanks.
It's working fine now
> --
> To unsubscribe, send email to wxPython-user...@googlegroups.com
> or visit http://groups.google.com/group/wxPython-users?hl=en
I've always been confused when to use it vs when not to.
Based on Cody's reply, and yours below, I probably shouldn't
Not saying there is right way or not but as matter of practice to
setup the initial layout I tend to call SetInitialSize() on the top
level container, this also allows you to set the minimum 'best' size.
Cody