Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'webcompare')
-rw-r--r--webcompare/status.aspx3
1 files changed, 2 insertions, 1 deletions
diff --git a/webcompare/status.aspx b/webcompare/status.aspx
index 35359f08..adbeb732 100644
--- a/webcompare/status.aspx
+++ b/webcompare/status.aspx
@@ -344,7 +344,8 @@ void TreeNodePopulate (object sender, TreeNodeEventArgs e)
}
tn.Value = child.InternalID.ToString ();
- tn.PopulateOnDemand = child.HasChildren;
+ if (tn.ChildNodes.Count == 0)
+ tn.PopulateOnDemand = child.HasChildren;
e.Node.ChildNodes.Add (tn);
}