The default start color is no longer the back-color (dont know why it took me so long that it was cancer AF)

This commit is contained in:
2022-05-31 14:40:02 +02:00
parent 6fe4fe2b83
commit 6d4ee29a2e

View File

@@ -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