infantry deaths (handled by Corpse effect)

This commit is contained in:
Chris Forbes
2009-12-17 15:46:50 +13:00
parent 942cb08f51
commit 997ddecc03
9 changed files with 98 additions and 7 deletions

View File

@@ -205,7 +205,9 @@ namespace SequenceEditor
e.Graphics.DrawString(toolText, Font, Brushes.Black, toolPoint.Value.X, toolPoint.Value.Y);
}
Height = Math.Max( Parent.ClientSize.Height, y );
var newHeight = Math.Max( Parent.ClientSize.Height, y );
if (Height != newHeight)
Height = newHeight;
}
}