diff options
| author | Jacob Palecki <[email protected]> | 2021-04-05 23:52:46 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2021-04-05 23:52:46 -0700 |
| commit | aba8e7757da8d2a542415257ac845f40f28f78a0 (patch) | |
| tree | 46599c8b83268aaaf346517e7bfa47283ab93d39 /grapher/Constants | |
| parent | Correctly align gain switch (diff) | |
| download | rawaccel-aba8e7757da8d2a542415257ac845f40f28f78a0.tar.xz rawaccel-aba8e7757da8d2a542415257ac845f40f28f78a0.zip | |
Resize vertically for correctness
Diffstat (limited to 'grapher/Constants')
| -rw-r--r-- | grapher/Constants/Constants.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/grapher/Constants/Constants.cs b/grapher/Constants/Constants.cs index d2e747c..2bc9bbc 100644 --- a/grapher/Constants/Constants.cs +++ b/grapher/Constants/Constants.cs @@ -44,7 +44,7 @@ namespace grapher public const int DropDownLeftSeparation = 10; /// <summary> Height of sensitivity chart when displayed alone. </summary> - public const int SensitivityChartAloneHeight = 455; + public const int SensitivityChartAloneHeight = 480; /// <summary> Height of sensitivity chart when displayed alongside Velocity and Gain charts. </summary> public const int SensitivityChartTogetherHeight = 328; @@ -64,6 +64,9 @@ namespace grapher /// <summary> Vertical placement of write button above bottom of sensitivity graph </summary> public const int ButtonVerticalOffset = 60; + /// <summary> Vertical placement of directionality panel below top of containing form </summary> + public const int DirectionalityVerticalOffset = 285; + /// <summary> Padding between directionality title and containing panel </summary> public const int DirectionalityTitlePad = 8; |