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