]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/treectlg.cpp
cache the best size in overridden DoGetBestSize()
[wxWidgets.git] / src / generic / treectlg.cpp
index c1cd97fdfb98e071231e3ee6f9d2a863e526a7e4..4c9305f01ee85cf66fc7a0b00410c6216e1a6917 100644 (file)
@@ -3651,9 +3651,15 @@ wxSize wxGenericTreeCtrl::DoGetBestSize() const
 {
     wxSize size = wxTreeCtrlBase::DoGetBestSize();
 
-    // The generic control seems to have an implicit border
+    // there seems to be an implicit extra border around the items, although
+    // I'm not really sure where does it come from -- but without this, the
+    // scrollbars appear in a tree with default/best size
     size.IncBy(4, 4);
 
+    // avoid caching (necessarily arbitrary) default size for empty tree
+    if ( GetRootItem().IsOk() )
+        CacheBestSize(size);
+
     return size;
 }