fixed hidden root expansion in extreme usage case
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15984 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -835,9 +835,17 @@ size_t wxGenericTreeCtrl::GetChildrenCount(const wxTreeItemId& item, bool recurs
|
|||||||
|
|
||||||
void wxGenericTreeCtrl::SetWindowStyle(const long styles)
|
void wxGenericTreeCtrl::SetWindowStyle(const long styles)
|
||||||
{
|
{
|
||||||
// right now, just sets the styles. Eventually, we may
|
if (!HasFlag(wxTR_HIDE_ROOT) && (styles & wxTR_HIDE_ROOT))
|
||||||
// want to update the inherited styles, but right now
|
{
|
||||||
// none of the parents has updatable styles
|
// if we will hide the root, make sure children are visible
|
||||||
|
m_anchor->SetHasPlus();
|
||||||
|
m_anchor->Expand();
|
||||||
|
CalculatePositions();
|
||||||
|
}
|
||||||
|
|
||||||
|
// right now, just sets the styles. Eventually, we may
|
||||||
|
// want to update the inherited styles, but right now
|
||||||
|
// none of the parents has updatable styles
|
||||||
m_windowStyle = styles;
|
m_windowStyle = styles;
|
||||||
m_dirty = TRUE;
|
m_dirty = TRUE;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user