diff options
| author | Jacob Palecki <[email protected]> | 2021-04-05 22:41:16 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2021-04-05 22:41:16 -0700 |
| commit | db593584edb93b053396259db4c4acbeee0ee9e6 (patch) | |
| tree | f7409206047b1093d42364acadeb26a2a69403b7 /grapher/Models/AccelGUIFactory.cs | |
| parent | update wrapper + writer to handle lut (diff) | |
| download | rawaccel-db593584edb93b053396259db4c4acbeee0ee9e6.tar.xz rawaccel-db593584edb93b053396259db4c4acbeee0ee9e6.zip | |
LUT GUI fixes
Diffstat (limited to 'grapher/Models/AccelGUIFactory.cs')
| -rw-r--r-- | grapher/Models/AccelGUIFactory.cs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/grapher/Models/AccelGUIFactory.cs b/grapher/Models/AccelGUIFactory.cs index c8446f0..e3a16b6 100644 --- a/grapher/Models/AccelGUIFactory.cs +++ b/grapher/Models/AccelGUIFactory.cs @@ -85,7 +85,8 @@ namespace grapher.Models Label limitLabelY, Label expLabelX, Label expLabelY, - Label lutTextLabel, + Label lutTextLabelX, + Label lutTextLabelY, Label constantThreeLabelX, Label constantThreeLabelY, Label activeValueTitleX, @@ -333,7 +334,8 @@ namespace grapher.Models legacyCapToolStripMenuItem, capY); - var lutText = new TextOption(lutTextLabel); + var lutTextX = new TextOption(lutTextLabelX); + var lutTextY = new TextOption(lutTextLabelY); var accelerationOptionsX = new AccelTypeOptions( accelTypeDropX, @@ -345,7 +347,7 @@ namespace grapher.Models limitX, exponentX, midpointX, - lutText, + lutTextX, writeButton, new ActiveValueLabel(accelTypeActiveLabelX, activeValueTitleX)); @@ -359,7 +361,7 @@ namespace grapher.Models limitY, exponentY, midpointY, - lutText, + lutTextY, writeButton, new ActiveValueLabel(accelTypeActiveLabelY, activeValueTitleY)); |