]> git.saurik.com Git - wxWidgets.git/blobdiff - src/aui/auibook.cpp
current page bug fix in wxAuiNotebook
[wxWidgets.git] / src / aui / auibook.cpp
index deb7b9175fe4da973f5d9decd1c5ae645f2aca2f..4bab0fbbff33ef0108f65a319049bf029d0b1f67 100644 (file)
@@ -2615,6 +2615,12 @@ bool wxAuiNotebook::InsertPage(size_t page_idx,
 
     m_tabs.InsertPage(page, info, page_idx);
 
+    // if that was the first page added, even if
+    // select is false, it must become the "current page"
+    // (though no select events will be fired)
+    if (!select && m_tabs.GetPageCount() == 1)
+        m_curpage = GetPageIndex(page);
+
     wxAuiTabCtrl* active_tabctrl = GetActiveTabCtrl();
     if (page_idx >= active_tabctrl->GetPageCount())
         active_tabctrl->AddPage(page, info);