summaryrefslogtreecommitdiff
path: root/grapher/Models/Options/TextOption.cs
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2021-04-05 22:41:16 -0700
committerJacob Palecki <[email protected]>2021-04-05 22:41:16 -0700
commitdb593584edb93b053396259db4c4acbeee0ee9e6 (patch)
treef7409206047b1093d42364acadeb26a2a69403b7 /grapher/Models/Options/TextOption.cs
parentupdate wrapper + writer to handle lut (diff)
downloadrawaccel-db593584edb93b053396259db4c4acbeee0ee9e6.tar.xz
rawaccel-db593584edb93b053396259db4c4acbeee0ee9e6.zip
LUT GUI fixes
Diffstat (limited to 'grapher/Models/Options/TextOption.cs')
-rw-r--r--grapher/Models/Options/TextOption.cs3
1 files changed, 3 insertions, 0 deletions
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