From 6d4ee29a2e7a75108962c31d5b4cf931c2b25b7a Mon Sep 17 00:00:00 2001 From: maxluli Date: Tue, 31 May 2022 14:40:02 +0200 Subject: [PATCH] The default start color is no longer the back-color (dont know why it took me so long that it was cancer AF) --- Paint_2/Sketch.cs | 5 +++++ 1 file changed, 5 insertions(+) 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