diff options
| author | Jacob Palecki <[email protected]> | 2020-10-08 19:44:40 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-10-08 19:44:40 -0700 |
| commit | 0039d6e84d4e05e842542ad021a9c21e619c69c2 (patch) | |
| tree | 2cbfa795c4e794dbdcbe364d2a93159fabd84e23 /grapher/Models/AccelGUI.cs | |
| parent | rename sensitivity field to 'sens multiplier' (diff) | |
| download | rawaccel-0039d6e84d4e05e842542ad021a9c21e619c69c2.tar.xz rawaccel-0039d6e84d4e05e842542ad021a9c21e619c69c2.zip | |
Follow full C# convention
Diffstat (limited to 'grapher/Models/AccelGUI.cs')
| -rw-r--r-- | grapher/Models/AccelGUI.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grapher/Models/AccelGUI.cs b/grapher/Models/AccelGUI.cs index 50207b2..d93017a 100644 --- a/grapher/Models/AccelGUI.cs +++ b/grapher/Models/AccelGUI.cs @@ -98,7 +98,7 @@ namespace grapher private void SaveGUISettingsOnClose(Object sender, FormClosingEventArgs e) { var guiSettings = Settings.MakeGUISettingsFromFields(); - if (!Settings.RawAccelSettings.GUISettings.ValueEquals(guiSettings)) + if (!Settings.RawAccelSettings.GUISettings.Equals(guiSettings)) { Settings.RawAccelSettings.GUISettings = guiSettings; Settings.RawAccelSettings.Save(); |