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