diff --git a/GreenshotCore/Core/ConfigHelper.cs b/GreenshotCore/Core/ConfigHelper.cs index 541f8e112..1646e02ba 100644 --- a/GreenshotCore/Core/ConfigHelper.cs +++ b/GreenshotCore/Core/ConfigHelper.cs @@ -387,6 +387,7 @@ namespace Greenshot.Core { foreach(string sectionName in iniProperties.Keys) { // Check if the section is one that is "registered", if so skip it! if (!sectionMap.ContainsKey(sectionName)) { + writer.WriteLine("; The section {0} might be obsolete/unused, or a plugin hasn't claimed it due to errors.", sectionName); // Write section name writer.WriteLine("[{0}]", sectionName); Dictionary properties = iniProperties[sectionName];