summaryrefslogtreecommitdiff
path: root/grapher/Models
diff options
context:
space:
mode:
authora1xd <[email protected]>2021-07-11 21:00:02 -0400
committera1xd <[email protected]>2021-07-11 21:00:02 -0400
commitf79209fdc6fe607aab957db8f0d2b0a1adcf3f4b (patch)
tree2de6af3e345a21e3b93417fe052af0f019b644a4 /grapher/Models
parentSmall bug fixes (diff)
downloadrawaccel-f79209fdc6fe607aab957db8f0d2b0a1adcf3f4b.tar.xz
rawaccel-f79209fdc6fe607aab957db8f0d2b0a1adcf3f4b.zip
fix args setter from field input
Diffstat (limited to 'grapher/Models')
-rw-r--r--grapher/Models/Options/AccelTypeOptions.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/grapher/Models/Options/AccelTypeOptions.cs b/grapher/Models/Options/AccelTypeOptions.cs
index a8cb469..e5b0fde 100644
--- a/grapher/Models/Options/AccelTypeOptions.cs
+++ b/grapher/Models/Options/AccelTypeOptions.cs
@@ -315,8 +315,8 @@ namespace grapher
if (Acceleration.Visible) args.accelClassic = Acceleration.Field.Data;
if (DecayRate.Visible) args.decayRate = DecayRate.Field.Data;
- if (GrowthRate.Visible) args.growthRate = DecayRate.Field.Data;
- if (Smooth.Visible) args.smooth = DecayRate.Field.Data;
+ if (GrowthRate.Visible) args.growthRate = GrowthRate.Field.Data;
+ if (Smooth.Visible) args.smooth = Smooth.Field.Data;
if (Scale.Visible) args.scale = Scale.Field.Data;
if (Cap.Visible) args.cap = Cap.Field.Data;
if (Limit.Visible) args.limit = Limit.Field.Data;