Просмотр исходного кода

Fixed LineDrawing nullable warning

Tigger Kindel 2 лет назад
Родитель
Сommit
78327e37f0
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      UICatalog/Scenarios/LineDrawing.cs

+ 1 - 1
UICatalog/Scenarios/LineDrawing.cs

@@ -97,7 +97,7 @@ namespace UICatalog.Scenarios {
 			List<LineCanvas> _layers = new List<LineCanvas> ();
 			LineCanvas _currentLayer;
 			Color _currentColor = Color.White;
-			StraightLine? _currentLine = null;
+			StraightLine _currentLine = null;
 
 			public LineStyle LineStyle { get; set; }