summaryrefslogtreecommitdiff
path: root/grapher/Models/Options
diff options
context:
space:
mode:
Diffstat (limited to 'grapher/Models/Options')
-rw-r--r--grapher/Models/Options/AccelTypeOptions.cs2
-rw-r--r--grapher/Models/Options/TextOption.cs3
2 files changed, 4 insertions, 1 deletions
diff --git a/grapher/Models/Options/AccelTypeOptions.cs b/grapher/Models/Options/AccelTypeOptions.cs
index 556f969..68eccf5 100644
--- a/grapher/Models/Options/AccelTypeOptions.cs
+++ b/grapher/Models/Options/AccelTypeOptions.cs
@@ -20,8 +20,8 @@ namespace grapher
new JumpLayout(),
new PowerLayout(),
new MotivityLayout(),
- new OffLayout(),
new LUTLayout(),
+ new OffLayout(),
}.ToDictionary(k => k.Name);
public static readonly AccelArgs DefaultArgs = new DriverSettings().args.x;
diff --git a/grapher/Models/Options/TextOption.cs b/grapher/Models/Options/TextOption.cs
index bbdedca..292b805 100644
--- a/grapher/Models/Options/TextOption.cs
+++ b/grapher/Models/Options/TextOption.cs
@@ -14,6 +14,9 @@ namespace grapher.Models.Options
public TextOption(Label label)
{
Label = label;
+ Label.AutoSize = false;
+ Label.Width = 150;
+ Label.Height = 100;
}
#endregion Constructors