Small fix on tree widget invalidate

This commit is contained in:
Grim Maple 2022-11-08 21:44:24 +03:00
parent d86ef672e6
commit 16f0050b14
1 changed files with 6 additions and 0 deletions

View File

@ -1014,6 +1014,12 @@ class TreeWidgetBase : ScrollWidget, OnTreeContentChangeListener, OnTreeStateCh
} }
return true; return true;
} }
override void invalidate()
{
super.invalidate();
updateWidgets();
}
} }
/// Tree widget with items which can have icons and labels /// Tree widget with items which can have icons and labels