diff options
| author | Jacob Palecki <[email protected]> | 2020-09-10 01:19:11 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-09-10 01:19:11 -0700 |
| commit | 0523ef22f60ed1196b6831b46c9ca2ac9ab27924 (patch) | |
| tree | 33b25cf346dc2749f3002d0a2f6263510150a1e3 /grapher/Layouts/SigmoidGainLayout.cs | |
| parent | Added more to guide (diff) | |
| download | rawaccel-0523ef22f60ed1196b6831b46c9ca2ac9ab27924.tar.xz rawaccel-0523ef22f60ed1196b6831b46c9ca2ac9ab27924.zip | |
Reenable weight for all styles, remove offset for sigmoidgain, fix active value for midpoint
Diffstat (limited to 'grapher/Layouts/SigmoidGainLayout.cs')
| -rw-r--r-- | grapher/Layouts/SigmoidGainLayout.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grapher/Layouts/SigmoidGainLayout.cs b/grapher/Layouts/SigmoidGainLayout.cs index 183e31f..c807439 100644 --- a/grapher/Layouts/SigmoidGainLayout.cs +++ b/grapher/Layouts/SigmoidGainLayout.cs @@ -12,8 +12,8 @@ namespace grapher.Layouts AccelLayout = new OptionLayout(true, Acceleration); CapLayout = new OptionLayout(false, string.Empty); - WeightLayout = new OptionLayout(false, string.Empty); - OffsetLayout = new OptionLayout(true, Offset); + WeightLayout = new OptionLayout(true, Weight); + OffsetLayout = new OptionLayout(false, string.Empty); LimExpLayout = new OptionLayout(true, Limit); MidpointLayout = new OptionLayout(true, Midpoint); } |