diff FrmUnit.cs @ 62:0e7c257ca8d6 WarFoundry_v0.1beta2_Winforms

Fixes #164: Show unit cost in army tree * Add points value in army tree for units, category and army (aggregating as it goes up the tree) * Add code to update tree node text as points values change * Remove references to now deprecated points-related properties Also: * Add rolling log file appender to logging config
author IBBoard <dev@ibboard.co.uk>
date Sat, 19 Sep 2009 19:44:45 +0000
parents c283545d2d0b
children 9a215113c84c
line wrap: on
line diff
--- a/FrmUnit.cs	Sat Sep 19 16:01:43 2009 +0000
+++ b/FrmUnit.cs	Sat Sep 19 19:44:45 2009 +0000
@@ -84,7 +84,7 @@
 
 		private void SetPointsValueText()
 		{
-			lblPoints.Text = "(" + unit.PointsValue + " pts)";
+			lblPoints.Text = "(" + unit.Points + " pts)";
 		}
 
 		private void SetStats()