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:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2010-02-12 02:21:23 +0300
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2010-02-12 02:21:23 +0300
commitd1e1804ab501b097b29dc8903803cf59364603b1 (patch)
tree0fc464be32b8d245903efd8324ae53871a9a5767 /webcompare
parent3720ef59bf2a730052ab019fe0cb16c1fda4d1f9 (diff)
This is needed after a fix in system.web
svn path=/trunk/mono-tools/; revision=151564
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);
}