mirror of https://github.com/buggins/dlangui.git
Small fix on tree widget invalidate
This commit is contained in:
parent
d86ef672e6
commit
16f0050b14
|
@ -1014,6 +1014,12 @@ class TreeWidgetBase : ScrollWidget, OnTreeContentChangeListener, OnTreeStateCh
|
|||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
override void invalidate()
|
||||
{
|
||||
super.invalidate();
|
||||
updateWidgets();
|
||||
}
|
||||
}
|
||||
|
||||
/// Tree widget with items which can have icons and labels
|
||||
|
|
Loading…
Reference in New Issue