File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
source/VersionHandlerImpl/src Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change
1
+ # Version 1.2.135 - Dec 5, 2019
2
+ ## Bug Fixes
3
+ * All Components: Fixed stack overflow when loading project settings.
4
+
1
5
# Version 1.2.134 - Dec 4, 2019
2
6
## Bug Fixes
3
7
* All Components: Fixed an issue which caused project settings to be cleared
Original file line number Diff line number Diff line change @@ -741,7 +741,7 @@ public void DeleteKeys(IEnumerable<string> names) {
741
741
/// <param name="save">Whether to save the settings.</param>
742
742
internal static void DeleteAllProjectKeys ( bool save = true ) {
743
743
lock ( classLock ) {
744
- LoadIfEmpty ( ) ;
744
+ if ( save ) LoadIfEmpty ( ) ;
745
745
foreach ( var key in new List < string > ( projectSettings . Keys ) ) {
746
746
projectSettings . DeleteKey ( key ) ;
747
747
}
You can’t perform that action at this time.
0 commit comments