summaryrefslogtreecommitdiff
path: root/grapher/Form1.cs
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2020-08-20 14:22:14 -0700
committerJacob Palecki <[email protected]>2020-08-20 14:22:14 -0700
commit7dbeae9d4cf108e78072b356d832123f12e42a90 (patch)
tree9711fddfb5241a3dc859cd421aa4937d38a8852f /grapher/Form1.cs
parentDisplay active values (diff)
downloadrawaccel-7dbeae9d4cf108e78072b356d832123f12e42a90.tar.xz
rawaccel-7dbeae9d4cf108e78072b356d832123f12e42a90.zip
Add accel type to active values and tweak color
Diffstat (limited to 'grapher/Form1.cs')
-rw-r--r--grapher/Form1.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/grapher/Form1.cs b/grapher/Form1.cs
index 01e7b20..1e38809 100644
--- a/grapher/Form1.cs
+++ b/grapher/Form1.cs
@@ -99,6 +99,10 @@ namespace grapher
showVelocityGainToolStripMenuItem,
new CheckBox[] { sensXYLock, weightXYLock, capXYLock });
+ ActiveValueTitle.AutoSize = false;
+ ActiveValueTitle.Left = LockXYLabel.Left + LockXYLabel.Width;
+ ActiveValueTitle.Width = AccelerationChart.Left - ActiveValueTitle.Left;
+ ActiveValueTitle.TextAlign = ContentAlignment.MiddleCenter;
var sensitivity = new OptionXY(
sensitivityBoxX,
@@ -185,7 +189,8 @@ namespace grapher
weight,
cap,
},
- writeButton);
+ writeButton,
+ new ActiveValueLabel(AccelTypeActiveLabel, ActiveValueTitle));
var capOptions = new CapOptions(
sensitivityToolStripMenuItem,