Преглед изворни кода

Fixed Rebuild not going to bottom of hierarchy

tznind пре 4 година
родитељ
комит
66a779cb41
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      Terminal.Gui/Views/TreeView.cs

+ 1 - 1
Terminal.Gui/Views/TreeView.cs

@@ -1344,7 +1344,7 @@ namespace Terminal.Gui {
 				if(IsExpanded) {
 					//if we are expanded we need to updatethe visible children
 					foreach(var child in ChildBranches) {
-						child.Value.Refresh(false);
+						child.Value.Rebuild();
 					}
 					
 				}