X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9e7642ae0d20232698aeeb6a35b526826b006ab8..24e9f36bccb720dc7b8abd6187d9427fecbc75c9:/src/common/treebase.cpp diff --git a/src/common/treebase.cpp b/src/common/treebase.cpp index 4eebd5fa09..38d242bf06 100644 --- a/src/common/treebase.cpp +++ b/src/common/treebase.cpp @@ -114,8 +114,10 @@ wxGetBestTreeSize(const wxTreeCtrlBase* treeCtrl, wxTreeItemId id, wxSize& size) if ( treeCtrl->GetBoundingRect(id, rect, true /* just the item */) ) { // Translate to logical position so we get the full extent +#if defined(__WXMSW__) && !defined(__WXUNIVERSAL__) rect.x += treeCtrl->GetScrollPos(wxHORIZONTAL); rect.y += treeCtrl->GetScrollPos(wxVERTICAL); +#endif size.IncTo(wxSize(rect.GetRight(), rect.GetBottom())); }