summaryrefslogtreecommitdiff
path: root/grapher/Layouts/LayoutBase.cs
diff options
context:
space:
mode:
Diffstat (limited to 'grapher/Layouts/LayoutBase.cs')
-rw-r--r--grapher/Layouts/LayoutBase.cs7
1 files changed, 5 insertions, 2 deletions
diff --git a/grapher/Layouts/LayoutBase.cs b/grapher/Layouts/LayoutBase.cs
index 10429fb..b89e2f7 100644
--- a/grapher/Layouts/LayoutBase.cs
+++ b/grapher/Layouts/LayoutBase.cs
@@ -25,15 +25,18 @@ namespace grapher.Layouts
MidpointLayout = new OptionLayout(false, string.Empty);
ButtonEnabled = true;
+ LogarithmicCharts = false;
}
/// <summary>
/// Gets or sets mapping from acceleration type to identifying integer.
/// Must match accel_mode defined in rawaccel-settings.h
/// </summary>
- public int Index { get; internal set; }
+ public int Index { get; protected set; }
- public string Name { get; internal set; }
+ public string Name { get; protected set; }
+
+ public bool LogarithmicCharts { get; protected set; }
protected bool ButtonEnabled { get; set; }