summaryrefslogtreecommitdiff
path: root/grapher/Models/AccelGUIFactory.cs
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2020-09-08 00:51:05 -0700
committerJacob Palecki <[email protected]>2020-09-08 00:51:05 -0700
commitf2322540dd904474587ddebfa8d96dc66a902530 (patch)
treecb1b8c5f4324acbb3586dfcac442d950c1f0a886 /grapher/Models/AccelGUIFactory.cs
parentAdd chart resize (diff)
downloadrawaccel-f2322540dd904474587ddebfa8d96dc66a902530.tar.xz
rawaccel-f2322540dd904474587ddebfa8d96dc66a902530.zip
Alignment for whole mode works
Diffstat (limited to 'grapher/Models/AccelGUIFactory.cs')
-rw-r--r--grapher/Models/AccelGUIFactory.cs9
1 files changed, 7 insertions, 2 deletions
diff --git a/grapher/Models/AccelGUIFactory.cs b/grapher/Models/AccelGUIFactory.cs
index 7dbf200..05cea70 100644
--- a/grapher/Models/AccelGUIFactory.cs
+++ b/grapher/Models/AccelGUIFactory.cs
@@ -55,6 +55,7 @@ namespace grapher.Models
TextBox midpointBoxY,
CheckBox sensXYLock,
CheckBox byComponentXYLock,
+ Label lockXYLabel,
Label sensitivityLabel,
Label rotationLabel,
Label weightLabelX,
@@ -70,6 +71,7 @@ namespace grapher.Models
Label constantThreeLabelX,
Label constantThreeLabelY,
Label activeValueTitle,
+ Label activeValueTitleY,
Label sensitivityActiveXLabel,
Label sensitivityActiveYLabel,
Label rotationActiveLabel,
@@ -255,11 +257,13 @@ namespace grapher.Models
var optionsSetX = new AccelOptionSet(
optionSetXTitle,
+ activeValueTitle,
rotationBox.Top + rotationBox.Height + Constants.OptionVerticalSeperation,
accelerationOptionsX);
var optionsSetY = new AccelOptionSet(
optionSetYTitle,
+ activeValueTitleY,
rotationBox.Top + rotationBox.Height + Constants.OptionVerticalSeperation,
accelerationOptionsY);
@@ -269,6 +273,9 @@ namespace grapher.Models
byComponentXYLock,
optionsSetX,
optionsSetY,
+ sensitivity,
+ rotation,
+ lockXYLabel,
accelCharts);
var accelCalculator = new AccelCalculator(
@@ -287,8 +294,6 @@ namespace grapher.Models
accelCharts,
settings,
applyOptions,
- sensitivity,
- rotation,
writeButton,
mouseLabel,
scaleMenuItem);