Browse Source

prevent creation of empty .sdsettings-files: empty Property containers should not be marked dirty (see discussion #480)

pull/487/head
Siegfried Pammer 11 years ago
parent
commit
9ea1ae2ed3
  1. 2
      src/Main/Core/Project/Src/Services/PropertyService/Properties.cs

2
src/Main/Core/Project/Src/Services/PropertyService/Properties.cs

@ -430,7 +430,7 @@ namespace ICSharpCode.Core @@ -430,7 +430,7 @@ namespace ICSharpCode.Core
if (result == null) {
result = new Properties(this);
dict[key] = result;
result.MakeDirty();
isNewContainer = true;
}
}
if (isNewContainer)

Loading…
Cancel
Save