summaryrefslogtreecommitdiff
path: root/grapher/Form1.cs
diff options
context:
space:
mode:
Diffstat (limited to 'grapher/Form1.cs')
-rw-r--r--grapher/Form1.cs9
1 files changed, 6 insertions, 3 deletions
diff --git a/grapher/Form1.cs b/grapher/Form1.cs
index ecb6ead..93e0768 100644
--- a/grapher/Form1.cs
+++ b/grapher/Form1.cs
@@ -21,9 +21,12 @@ namespace grapher
ManagedAcceleration = new ManagedAccel(5, 0, 0.3, 1.25, 15);
AccelerationOptions = new AccelOptions(
accelTypeDrop,
- new Option(accelerationBox, constantOneLabel),
- new Option(limitBox, constantTwoLabel),
- new Option(midpointBox, constantThreeLabel));
+ new Option[]
+ {
+ new Option(accelerationBox, constantOneLabel),
+ new Option(limitBox, constantTwoLabel),
+ new Option(midpointBox, constantThreeLabel)
+ });
Sensitivity = new FieldXY(sensitivityBoxX, sensitivityBoxY, sensXYLock, this, 1);
Rotation = new Field(rotationBox, this, 0);
Weight = new FieldXY(weightBoxFirst, weightBoxSecond, weightXYLock, this, 1);