summaryrefslogtreecommitdiff
path: root/grapher/Constants
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2020-09-08 14:21:22 -0700
committerJacob Palecki <[email protected]>2020-09-08 14:21:22 -0700
commit79bb4f0bc1d72c36767ff73825b7f70db9615928 (patch)
treef0b607c44cb0a5e165a0842652baad627f29e887 /grapher/Constants
parentAdd delay on button enable after writing to driver (diff)
downloadrawaccel-79bb4f0bc1d72c36767ff73825b7f70db9615928.tar.xz
rawaccel-79bb4f0bc1d72c36767ff73825b7f70db9615928.zip
Set WriteButton vertical placement
Diffstat (limited to 'grapher/Constants')
-rw-r--r--grapher/Constants/Constants.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/grapher/Constants/Constants.cs b/grapher/Constants/Constants.cs
index d74d045..aaf8bb9 100644
--- a/grapher/Constants/Constants.cs
+++ b/grapher/Constants/Constants.cs
@@ -51,14 +51,17 @@ namespace grapher
/// <summary> Width of charts when widened </summary>
public const int WideChartWidth = 723;
- /// <summary> Width of charts when widened </summary>
+ /// <summary> Left placement of charts when widened </summary>
public const int WideChartLeft = 333;
/// <summary> Width of charts when narrowed </summary>
public const int NarrowChartWidth = 698;
+ /// <summary> Left placement of charts when narrowed </summary>
public const int NarrowChartLeft = 482;
+ public const int WriteButtonVerticalOffset = 50;
+
/// <summary> Format string for shortened x and y textboxes. </summary>
public const string ShortenedFormatString = "0.###";