소스 검색

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();
 					}
 					
 				}