Patch #753465 a fix for Bug#750363.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@21082 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -314,7 +314,7 @@ void wxRemotelyScrolledTreeCtrl::AdjustRemoteScrollbars()
|
|||||||
if (scrolledWindow)
|
if (scrolledWindow)
|
||||||
{
|
{
|
||||||
wxRect itemRect;
|
wxRect itemRect;
|
||||||
if (GetBoundingRect(GetRootItem(), itemRect))
|
if (GetBoundingRect(GetFirstVisibleItem(), itemRect))
|
||||||
{
|
{
|
||||||
// Actually, the real height seems to be 1 less than reported
|
// Actually, the real height seems to be 1 less than reported
|
||||||
// (e.g. 16 instead of 16)
|
// (e.g. 16 instead of 16)
|
||||||
|
@@ -1914,6 +1914,13 @@ bool wxTreeCtrl::GetBoundingRect(const wxTreeItemId& item,
|
|||||||
bool textOnly) const
|
bool textOnly) const
|
||||||
{
|
{
|
||||||
RECT rc;
|
RECT rc;
|
||||||
|
|
||||||
|
// Virtual root items have no bounding rectangle
|
||||||
|
if ( IS_VIRTUAL_ROOT(item) )
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
if ( TreeView_GetItemRect(GetHwnd(), HITEM(item),
|
if ( TreeView_GetItemRect(GetHwnd(), HITEM(item),
|
||||||
&rc, textOnly) )
|
&rc, textOnly) )
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user