Skip to content

Commit 14df537

Browse files
authored
Merge branch 'main' into chore/refactoring-2
2 parents 052c5ff + 0900537 commit 14df537

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Source/NETworkManager/ViewModels/SettingsWindowViewModel.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ public bool ConfirmClose
5151
if (!_isLoading)
5252
SettingsManager.Current.Window_ConfirmClose = value;
5353

54-
field = value;
55-
OnPropertyChanged();
54+
_confirmClose = value;
55+
OnPropertyChanged();
5656
}
5757
}
5858

@@ -66,9 +66,9 @@ public bool MultipleInstances
6666

6767
if (!_isLoading)
6868
SettingsManager.Current.Window_MultipleInstances = value;
69-
70-
field = value;
71-
OnPropertyChanged();
69+
70+
_multipleInstances = value;
71+
OnPropertyChanged();
7272
}
7373
}
7474

@@ -129,4 +129,4 @@ private void LoadSettings()
129129
}
130130

131131
#endregion
132-
}
132+
}

0 commit comments

Comments
 (0)