diff options
| author | a1xd <[email protected]> | 2020-10-07 05:17:24 -0400 |
|---|---|---|
| committer | a1xd <[email protected]> | 2020-10-07 05:17:24 -0400 |
| commit | f7f598fef044c0f11169968070c41ae51dc6ade2 (patch) | |
| tree | cb4da0cadf0dc67085832e0ca98f34c5dd3621f0 /grapher/Models/Options | |
| parent | Merge pull request #31 from a1xd/fix-1.0.0 (diff) | |
| download | rawaccel-1.0.2.tar.xz rawaccel-1.0.2.zip | |
Fixed anisotropy not loading correctly on savev1.0.2
Diffstat (limited to 'grapher/Models/Options')
| -rw-r--r-- | grapher/Models/Options/ApplyOptions.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/grapher/Models/Options/ApplyOptions.cs b/grapher/Models/Options/ApplyOptions.cs index c2ed498..71e580d 100644 --- a/grapher/Models/Options/ApplyOptions.cs +++ b/grapher/Models/Options/ApplyOptions.cs @@ -114,9 +114,10 @@ namespace grapher.Models.Options Sensitivity.SetActiveValues(xSens, ySens); Rotation.SetActiveValue(rotation); OptionSetX.SetActiveValues(xMode, xArgs); - OptionSetY.SetActiveValues(yMode, yArgs); WholeVectorMenuItem.Checked = isWhole; ByComponentVectorMenuItem.Checked = !isWhole; + ByComponentVectorXYLock.Checked = xArgs.Equals(yArgs); + OptionSetY.SetActiveValues(yMode, yArgs); } public void SetActiveValues(DriverSettings settings) |