diff Widgets/ValidationFailureWidget.cs @ 144:929ef50c3919

Fixes #344: Show unit requirement failures * Remove border on scrollable area * Make text selectable, in case people want to copy it * Shrink size of New Unit window to remove spare space
author IBBoard <dev@ibboard.co.uk>
date Tue, 25 Oct 2011 20:32:47 +0100
parents f23e5b40ca9d
children
line wrap: on
line diff
--- a/Widgets/ValidationFailureWidget.cs	Wed Oct 19 20:35:31 2011 +0100
+++ b/Widgets/ValidationFailureWidget.cs	Tue Oct 25 20:32:47 2011 +0100
@@ -26,7 +26,7 @@
 			
 			foreach (string msg in messages)
 			{
-				sb.AppendLine("• " + msg);
+				sb.AppendLine(" • " + msg);
 			}
 			
 			validationMessages.Text = sb.ToString();