diff options
| author | a1xd <[email protected]> | 2021-09-19 02:08:06 -0400 |
|---|---|---|
| committer | a1xd <[email protected]> | 2021-09-23 22:37:02 -0400 |
| commit | 4c4eabc0cb85cfef22900773649d96f610bb25dc (patch) | |
| tree | 3a2918f93b7fcfb856b6f00c8399fece3860f8b7 /grapher/Layouts/JumpLayout.cs | |
| parent | fix input checks (diff) | |
| download | rawaccel-4c4eabc0cb85cfef22900773649d96f610bb25dc.tar.xz rawaccel-4c4eabc0cb85cfef22900773649d96f610bb25dc.zip | |
fix jump fields
Diffstat (limited to 'grapher/Layouts/JumpLayout.cs')
| -rw-r--r-- | grapher/Layouts/JumpLayout.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/grapher/Layouts/JumpLayout.cs b/grapher/Layouts/JumpLayout.cs index 9554175..453a2c7 100644 --- a/grapher/Layouts/JumpLayout.cs +++ b/grapher/Layouts/JumpLayout.cs @@ -17,7 +17,7 @@ namespace grapher.Layouts DecayRateLayout = new OptionLayout(false, string.Empty); GrowthRateLayout = new OptionLayout(false, string.Empty); SmoothLayout = new OptionLayout(true, Smooth); - InputOffsetLayout = new OptionLayout(true, InputOffset); + InputOffsetLayout = new OptionLayout(false, InputOffset); LimitLayout = new OptionLayout(false, Limit); PowerClassicLayout = new OptionLayout(false, string.Empty); ExponentLayout = new OptionLayout(false, string.Empty); @@ -26,6 +26,8 @@ namespace grapher.Layouts LutTextLayout = new OptionLayout(false, string.Empty); LutPanelLayout = new OptionLayout(false, string.Empty); LutApplyOptionsLayout = new OptionLayout(false, string.Empty); + InputJumpLayout = new OptionLayout(true, Input); + OutputJumpLayout = new OptionLayout(true, Output); } } } |