mirror of
https://github.com/greenshot/greenshot
synced 2025-08-14 02:37:03 -07:00
Fixed Bug #3553527, had changed a bit of logic for creating the ini-values to work as it supposed to but only changed the dictionary.add and forgot to change the dictionary.contains. This caused a key to be added twice.
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1972 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
028af7999b
commit
153b1cd2c9
2 changed files with 3 additions and 2 deletions
|
@ -40,6 +40,7 @@ namespace Greenshot.IniFile {
|
|||
private static Dictionary<string, IniSection> sectionMap = new Dictionary<string, IniSection>();
|
||||
private static Dictionary<string, Dictionary<string, string>> sections = new Dictionary<string, Dictionary<string, string>>();
|
||||
private static Dictionary<string, Dictionary<string, string>> fixedProperties = null;
|
||||
|
||||
public static event FileSystemEventHandler IniChanged;
|
||||
private static bool portableCheckMade = false;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue