Hi,
You need to all $aui->Update whenever you alter panes or layout.
For this particular case,
in Padre::Wx::Main at end of setup_editors method
around line 3547
$self->aui->Update;
There's probably a better place to put this for general application but
you get the idea.
Mark
On 25/05/2011 06:58, Gabor Szabo wrote:
On Wed, May 25, 2011 at 2:13 AM, Mark Dootson<mark.doot...@znix.com> wrote:
And - To the list I intended and in reply to the correct post :-)
Hi,
The wonders of Wx::AUI.
Workaround = wait till your Frame is fully constructed before processing
size events
In Padre::Wx::Main in constructor
around line 139
$self->Freeze;
at the end of timer_start method
around line 412
$self->Thaw;
Thanks.
I added this to an alreeady installed version of Padre and it solved
the problem for when Padre is launched
but I still get the same behavior when I open a new file. Now digging
for the location where I need to
add the above to fix this as well.
Gabor