summaryrefslogtreecommitdiff
path: root/grapher/Form1.Designer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'grapher/Form1.Designer.cs')
-rw-r--r--grapher/Form1.Designer.cs13
1 files changed, 4 insertions, 9 deletions
diff --git a/grapher/Form1.Designer.cs b/grapher/Form1.Designer.cs
index 09a4da3..b2bc052 100644
--- a/grapher/Form1.Designer.cs
+++ b/grapher/Form1.Designer.cs
@@ -1,4 +1,6 @@
-namespace grapher
+using System.Linq;
+
+namespace grapher
{
partial class RawAcceleration
{
@@ -82,14 +84,7 @@
// accelTypeDrop
//
this.accelTypeDrop.FormattingEnabled = true;
- this.accelTypeDrop.Items.AddRange(new object[] {
- "Off",
- "Linear",
- "Classic",
- "Natural",
- "Logarithmic",
- "Sigmoid",
- "Power"});
+ this.accelTypeDrop.Items.AddRange(AccelOptions.TypeToIndex.Keys.ToArray());
this.accelTypeDrop.Location = new System.Drawing.Point(14, 89);
this.accelTypeDrop.Name = "accelTypeDrop";
this.accelTypeDrop.Size = new System.Drawing.Size(151, 21);