diff --git a/Paint_2/Sketch.cs b/Paint_2/Sketch.cs index c861882..e2b77aa 100644 --- a/Paint_2/Sketch.cs +++ b/Paint_2/Sketch.cs @@ -36,6 +36,11 @@ namespace Paint_2 ToolList = toolList; if (toolList[0] != null) { + //Setup default Color + foreach (PaintTool tool in toolList) + { + tool.Color = Color.White; + } CurrentTool = toolList[0]; } else