Hi, On 30/05/2011 08:17, Adam Kennedy wrote: > Although by "fix" this also implies "disable all Wx-level GUI > optimization completely".
Indeed. However, the following also seems to remove the symptom if that's what you want. (don't forget to reinstate WindowUpdateLocker creation). sub update_decrement { my $self = shift; unless ( --$self->{update_depth} ) { return if $self->{shutdown}; # Unlocked for the final time $self->{update_locker} = undef; for my $childwin ( $self->{owner}->GetChildren ) { $childwin->Layout if $childwin->isa('Wx::AuiNotebook'); } } return; } _______________________________________________ Padre-dev mailing list Padre-dev@perlide.org http://mail.perlide.org/mailman/listinfo/padre-dev