summaryrefslogtreecommitdiff
path: root/grapher/Layouts/OffLayout.cs
diff options
context:
space:
mode:
authorJacobPalecki <[email protected]>2020-09-27 20:54:57 -0700
committerGitHub <[email protected]>2020-09-27 20:54:57 -0700
commit5f3ea6699f4b1a7eec7f9f0cd51ad9afbc1dea4b (patch)
treef1c73a42b369f362a40ea251281d98ee02bf0a98 /grapher/Layouts/OffLayout.cs
parentMerge pull request #25 from JacobPalecki/GUI (diff)
parentadd arg checks in wrapper (diff)
downloadrawaccel-5f3ea6699f4b1a7eec7f9f0cd51ad9afbc1dea4b.tar.xz
rawaccel-5f3ea6699f4b1a7eec7f9f0cd51ad9afbc1dea4b.zip
Merge pull request #26 from a1xd/argcheck
Accel arg checks
Diffstat (limited to 'grapher/Layouts/OffLayout.cs')
-rw-r--r--grapher/Layouts/OffLayout.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/grapher/Layouts/OffLayout.cs b/grapher/Layouts/OffLayout.cs
index c47ea39..664e364 100644
--- a/grapher/Layouts/OffLayout.cs
+++ b/grapher/Layouts/OffLayout.cs
@@ -13,10 +13,12 @@ namespace grapher.Layouts
LogarithmicCharts = false;
AccelLayout = new OptionLayout(false, string.Empty);
+ ScaleLayout = new OptionLayout(false, string.Empty);
CapLayout = new OptionLayout(false, string.Empty);
WeightLayout = new OptionLayout(false, string.Empty);
OffsetLayout = new OptionLayout(false, string.Empty);
- LimExpLayout = new OptionLayout(false, string.Empty);
+ LimitLayout = new OptionLayout(false, string.Empty);
+ ExponentLayout = new OptionLayout(false, string.Empty);
MidpointLayout = new OptionLayout(false, string.Empty);
}
}