diff options
| author | a1xd <[email protected]> | 2021-08-29 19:07:44 -0400 |
|---|---|---|
| committer | a1xd <[email protected]> | 2021-08-29 19:07:44 -0400 |
| commit | eaac998d9be1034720aab85ced9ba15d808c5320 (patch) | |
| tree | 2c901879ab9aaaf9b136353e787b1a4ca4309a8d /grapher | |
| parent | enable directionality options with by-component (diff) | |
| download | rawaccel-eaac998d9be1034720aab85ced9ba15d808c5320.tar.xz rawaccel-eaac998d9be1034720aab85ced9ba15d808c5320.zip | |
remove unused accel fields
classic mode - weight
natural mode - weight
power mode - cap
Diffstat (limited to 'grapher')
| -rw-r--r-- | grapher/Layouts/ClassicLayout.cs | 2 | ||||
| -rw-r--r-- | grapher/Layouts/NaturalLayout.cs | 2 | ||||
| -rw-r--r-- | grapher/Layouts/PowerLayout.cs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/grapher/Layouts/ClassicLayout.cs b/grapher/Layouts/ClassicLayout.cs index 86756c9..fb8fa02 100644 --- a/grapher/Layouts/ClassicLayout.cs +++ b/grapher/Layouts/ClassicLayout.cs @@ -17,7 +17,7 @@ namespace grapher.Layouts SmoothLayout = new OptionLayout(false, string.Empty); ScaleLayout = new OptionLayout(false, string.Empty); CapLayout = new OptionLayout(true, Cap); - WeightLayout = new OptionLayout(true, Weight); + WeightLayout = new OptionLayout(false, string.Empty); OffsetLayout = new OptionLayout(true, Offset); LimitLayout = new OptionLayout(false, string.Empty); PowerClassicLayout = new OptionLayout(true, PowerClassic); diff --git a/grapher/Layouts/NaturalLayout.cs b/grapher/Layouts/NaturalLayout.cs index 4702f50..15166cb 100644 --- a/grapher/Layouts/NaturalLayout.cs +++ b/grapher/Layouts/NaturalLayout.cs @@ -18,7 +18,7 @@ namespace grapher.Layouts SmoothLayout = new OptionLayout(false, string.Empty); ScaleLayout = new OptionLayout(false, string.Empty); CapLayout = new OptionLayout(false, string.Empty); - WeightLayout = new OptionLayout(true, Weight); + WeightLayout = new OptionLayout(false, string.Empty); OffsetLayout = new OptionLayout(true, Offset); LimitLayout = new OptionLayout(true, Limit); PowerClassicLayout = new OptionLayout(false, string.Empty); diff --git a/grapher/Layouts/PowerLayout.cs b/grapher/Layouts/PowerLayout.cs index d11480f..03d9efa 100644 --- a/grapher/Layouts/PowerLayout.cs +++ b/grapher/Layouts/PowerLayout.cs @@ -15,7 +15,7 @@ GrowthRateLayout = new OptionLayout(false, string.Empty); SmoothLayout = new OptionLayout(false, string.Empty); ScaleLayout = new OptionLayout(true, Scale); - CapLayout = new OptionLayout(true, Cap); + CapLayout = new OptionLayout(false, string.Empty); WeightLayout = new OptionLayout(true, Weight); OffsetLayout = new OptionLayout(false, string.Empty); LimitLayout = new OptionLayout(false, string.Empty); |