git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15984
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
void wxGenericTreeCtrl::SetWindowStyle(const long styles)
{
void wxGenericTreeCtrl::SetWindowStyle(const long styles)
{
- // 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
+ if (!HasFlag(wxTR_HIDE_ROOT) && (styles & wxTR_HIDE_ROOT))
+ {
+ // 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_dirty = TRUE;
}
m_windowStyle = styles;
m_dirty = TRUE;
}