diff options
Diffstat (limited to 'grapher/Layouts/OffLayout.cs')
| -rw-r--r-- | grapher/Layouts/OffLayout.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/grapher/Layouts/OffLayout.cs b/grapher/Layouts/OffLayout.cs index 087885f..ce7c149 100644 --- a/grapher/Layouts/OffLayout.cs +++ b/grapher/Layouts/OffLayout.cs @@ -1,4 +1,5 @@ -using System; +using grapher.Models.Serialized; +using System; using System.Collections.Generic; using System.Linq; using System.Text; @@ -12,7 +13,7 @@ namespace grapher.Layouts : base() { Name = "Off"; - Index = 9; + Index = (int)AccelMode.noaccel; ShowOptions = new bool[] { false, false, false, false }; OptionNames = new string[] { string.Empty, string.Empty, string.Empty, string.Empty }; ShowOptionsXY = new bool[] { false, false }; |