diff options
Diffstat (limited to 'grapher/Layouts/LinearLayout.cs')
| -rw-r--r-- | grapher/Layouts/LinearLayout.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/grapher/Layouts/LinearLayout.cs b/grapher/Layouts/LinearLayout.cs index b500b6b..2a0358e 100644 --- a/grapher/Layouts/LinearLayout.cs +++ b/grapher/Layouts/LinearLayout.cs @@ -9,11 +9,12 @@ namespace grapher.Layouts public class LinearLayout : LayoutBase { public LinearLayout() + : base() { Name = "Linear"; Index = 1; - Show = new bool[] { true, false, false }; - OptionNames = new string[] { Acceleration, string.Empty, string.Empty }; + ShowOptions = new bool[] { true, true, false, false }; + OptionNames = new string[] { Offset, Acceleration, string.Empty, string.Empty }; } } } |