id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc
93,wxNotebook/wxAuiNotebook incompatibility,hjansen,,"wxNotebook/wxAuiNotebook are almost but apparently not fully compatible: There is no equivalent to wxNotebook::!ChangeSelection in !wxAuiNotebook (at least up to wxWidgets 2.8.9).
One can use wxAuiNotebook::!SetSelection but unlike wxNotebook::!ChangeSelection this will generate a page change event.
I don't know if that might be a problem but since using !ChangeSelection definitely _is_ a problem the following change seems unavoidable: 

{{{
Index: lib/Padre/Wx/MainWindow.pm
===================================================================
--- lib/Padre/Wx/MainWindow.pm  (Revision 693)
+++ lib/Padre/Wx/MainWindow.pm  (Arbeitskopie)
@@ -1159,7 +1183,7 @@
        my ($self, $id) = @_;
        my $page = $self->{notebook}->GetPage($id);
        if ($page) {
-          $self->{notebook}->ChangeSelection($id);
+          $self->{notebook}->SetSelection($id);
           $self->refresh_status;
           return 1;
        }
}}}",defect,closed,major,,editor,0.15,fixed,,
