]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/bookctrl.cpp
font inheritance fixes (patch 983251)
[wxWidgets.git] / src / common / bookctrl.cpp
index b04136183e26f69943df4b3cc2a638dd66e55c05..bf8a83343440d814fcd28e01348a0eb7a880554d 100644 (file)
@@ -130,7 +130,9 @@ wxSize wxBookCtrl::DoGetBestSize() const
 
     // convert display area to window area, adding the size neccessary for the
     // tabs
-    return CalcSizeFromPage(bestSize);
+    wxSize best = CalcSizeFromPage(bestSize);
+    CacheBestSize(best);
+    return best;
 }
 
 // ----------------------------------------------------------------------------