diff options
| author | Jacob Palecki <[email protected]> | 2021-04-04 23:14:39 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2021-04-04 23:14:39 -0700 |
| commit | 069bf5795fbf127d2a8c3233988a77aa7b2107d7 (patch) | |
| tree | 2df5907768e11caba199df466287f29595daa8e8 /grapher/Layouts/LinearLayout.cs | |
| parent | Add differing table types (diff) | |
| download | rawaccel-069bf5795fbf127d2a8c3233988a77aa7b2107d7.tar.xz rawaccel-069bf5795fbf127d2a8c3233988a77aa7b2107d7.zip | |
Fix most errors from wrapper rewrite
Diffstat (limited to 'grapher/Layouts/LinearLayout.cs')
| -rw-r--r-- | grapher/Layouts/LinearLayout.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/grapher/Layouts/LinearLayout.cs b/grapher/Layouts/LinearLayout.cs index 0412a2a..186d655 100644 --- a/grapher/Layouts/LinearLayout.cs +++ b/grapher/Layouts/LinearLayout.cs @@ -4,11 +4,13 @@ namespace grapher.Layouts { public class LinearLayout : LayoutBase { + public const string LinearName = "Linear"; + public LinearLayout() : base() { - Name = "Linear"; - Index = (int)AccelMode.linear; + Name = LinearName; + Index = (int)AccelMode.classic; LogarithmicCharts = false; AccelLayout = new OptionLayout(true, Acceleration); |