diff options
| author | JacobPalecki <[email protected]> | 2020-09-27 20:54:57 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-09-27 20:54:57 -0700 |
| commit | 5f3ea6699f4b1a7eec7f9f0cd51ad9afbc1dea4b (patch) | |
| tree | f1c73a42b369f362a40ea251281d98ee02bf0a98 /grapher/Layouts/LinearLayout.cs | |
| parent | Merge pull request #25 from JacobPalecki/GUI (diff) | |
| parent | add arg checks in wrapper (diff) | |
| download | rawaccel-5f3ea6699f4b1a7eec7f9f0cd51ad9afbc1dea4b.tar.xz rawaccel-5f3ea6699f4b1a7eec7f9f0cd51ad9afbc1dea4b.zip | |
Merge pull request #26 from a1xd/argcheck
Accel arg checks
Diffstat (limited to 'grapher/Layouts/LinearLayout.cs')
| -rw-r--r-- | grapher/Layouts/LinearLayout.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/grapher/Layouts/LinearLayout.cs b/grapher/Layouts/LinearLayout.cs index e87c851..0412a2a 100644 --- a/grapher/Layouts/LinearLayout.cs +++ b/grapher/Layouts/LinearLayout.cs @@ -12,10 +12,12 @@ namespace grapher.Layouts LogarithmicCharts = false; AccelLayout = new OptionLayout(true, Acceleration); + ScaleLayout = new OptionLayout(false, string.Empty); CapLayout = new OptionLayout(true, Cap); WeightLayout = new OptionLayout(true, Weight); OffsetLayout = new OptionLayout(true, Offset); - LimExpLayout = new OptionLayout(false, string.Empty); + LimitLayout = new OptionLayout(false, string.Empty); + ExponentLayout = new OptionLayout(false, string.Empty); MidpointLayout = new OptionLayout(false, string.Empty); } } |