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/Layouts/NaturalLayout.cs | |
| 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/Layouts/NaturalLayout.cs')
| -rw-r--r-- | grapher/Layouts/NaturalLayout.cs | 2 |
1 files changed, 1 insertions, 1 deletions
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); |