diff options
Diffstat (limited to 'grapher/Layouts/NaturalLayout.cs')
| -rw-r--r-- | grapher/Layouts/NaturalLayout.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/grapher/Layouts/NaturalLayout.cs b/grapher/Layouts/NaturalLayout.cs index 743135c..44c6c18 100644 --- a/grapher/Layouts/NaturalLayout.cs +++ b/grapher/Layouts/NaturalLayout.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 = "Natural"; - Index = 3; + Index = (int)AccelMode.natural; ShowOptions = new bool[] { true, true, true, false }; OptionNames = new string[] { Offset, Acceleration, Limit, string.Empty }; } |