From 10d1f05c8d78a48c59b6598a3530e77f21820704 Mon Sep 17 00:00:00 2001 From: Xanthalas Date: Sun, 13 Aug 2017 11:13:18 +0100 Subject: [PATCH] Fix variable name (from quite to quiet). --- tools/ColorTool/ColorTool/Program.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/ColorTool/ColorTool/Program.cs b/tools/ColorTool/ColorTool/Program.cs index 1f56047f2..89caf4b84 100644 --- a/tools/ColorTool/ColorTool/Program.cs +++ b/tools/ColorTool/ColorTool/Program.cs @@ -80,7 +80,7 @@ namespace ColorTool DARK_WHITE }; - static bool quiteMode = false; + static bool quietMode = false; static bool setDefaults = false; static bool setProperties = true; @@ -189,7 +189,7 @@ namespace ColorTool } if (success) { - if (!quiteMode) + if (!quietMode) { PrintTable(); } @@ -223,7 +223,7 @@ namespace ColorTool { case "-q": case "--quiet": - quiteMode = true; + quietMode = true; break; case "-d": case "--defaults":