diff options
Diffstat (limited to 'grapher/Layouts/JumpLayout.cs')
| -rw-r--r-- | grapher/Layouts/JumpLayout.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/grapher/Layouts/JumpLayout.cs b/grapher/Layouts/JumpLayout.cs index cb77963..d78d273 100644 --- a/grapher/Layouts/JumpLayout.cs +++ b/grapher/Layouts/JumpLayout.cs @@ -11,14 +11,16 @@ namespace grapher.Layouts Index = (int)AccelMode.jump; LogarithmicCharts = false; - AccelLayout = new OptionLayout(false, Acceleration); + GainSwitchOptionLayout = new OptionLayout(true, Gain); + AccelLayout = new OptionLayout(true, Smooth); ScaleLayout = new OptionLayout(false, string.Empty); - CapLayout = new OptionLayout(true, string.Empty); + CapLayout = new OptionLayout(true, Cap); WeightLayout = new OptionLayout(false, Weight); OffsetLayout = new OptionLayout(true, Offset); LimitLayout = new OptionLayout(false, Limit); ExponentLayout = new OptionLayout(false, string.Empty); MidpointLayout = new OptionLayout(false, string.Empty); + LUTTextLayout = new OptionLayout(false, string.Empty); } } } |