diff options
| author | a1xd <[email protected]> | 2021-09-22 20:49:04 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-09-22 20:49:04 -0400 |
| commit | 8a4b6f57758338d5537d4671184099a4728a8cdd (patch) | |
| tree | df36529a344d5d21ff11f5ba021ec80afb4b68a4 /grapher/Constants/Constants.cs | |
| parent | Merge pull request #87 from matthewstrasiotto/streamer_mode (diff) | |
| parent | improve converter + docs (diff) | |
| download | rawaccel-8a4b6f57758338d5537d4671184099a4728a8cdd.tar.xz rawaccel-8a4b6f57758338d5537d4671184099a4728a8cdd.zip | |
Merge pull request #105 from a1xd/1.5.x
v1.5
Diffstat (limited to 'grapher/Constants/Constants.cs')
| -rw-r--r-- | grapher/Constants/Constants.cs | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/grapher/Constants/Constants.cs b/grapher/Constants/Constants.cs index ce18389..703c488 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; @@ -101,7 +104,10 @@ namespace grapher /// <summary> Default text to be displayed on button delay. </summary> public const string ButtonDelayText = "Delay"; - + + /// <summary> Default text to be displayed on button delay. </summary> + public const string ResetButtonText = "Reset"; + /// <summary> Title of sensitivity chart. </summary> public const string SensitivityChartTitle = "Sensitivity"; @@ -120,6 +126,8 @@ namespace grapher /// <summary> Default name of settings file. </summary> public const string DefaultSettingsFileName = @"settings.json"; + public const string GuiConfigFileName = ".config"; + /// <summary> Text to direcitonality panel title when panel is closed. </summary> public const string DirectionalityTitleClosed = "Anisotropy \u25BC"; |