diff options
| author | a1xd <[email protected]> | 2020-10-08 02:07:56 -0400 |
|---|---|---|
| committer | a1xd <[email protected]> | 2020-10-08 02:07:56 -0400 |
| commit | 2be0106211cb4ce30036fc0c8e84ae70dff68c87 (patch) | |
| tree | d36296ff0402c014d355b7fb1b8e7cc4c11fc3f4 /grapher/Constants | |
| parent | ease requirements for loading driver settings (diff) | |
| download | rawaccel-2be0106211cb4ce30036fc0c8e84ae70dff68c87.tar.xz rawaccel-2be0106211cb4ce30036fc0c8e84ae70dff68c87.zip | |
add toggle button + save gui settings on close
remove option to disable write on startup
Diffstat (limited to 'grapher/Constants')
| -rw-r--r-- | grapher/Constants/Constants.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/grapher/Constants/Constants.cs b/grapher/Constants/Constants.cs index b41ffa2..639bd9b 100644 --- a/grapher/Constants/Constants.cs +++ b/grapher/Constants/Constants.cs @@ -58,7 +58,7 @@ namespace grapher public const int NarrowChartLeft = 482; /// <summary> Vertical placement of write button above bottom of sensitivity graph </summary> - public const int WriteButtonVerticalOffset = 80; + public const int ButtonVerticalOffset = 60; /// <summary> Format string for shortened x and y textboxes. </summary> public const string ShortenedFormatString = "0.###"; @@ -85,7 +85,10 @@ namespace grapher public const string WriteButtonDefaultText = "Apply"; /// <summary> Default text to be displayed on write button. </summary> - public const string WriteButtonDelayText = "Delay"; + public const string ToggleButtonDefaultText = "Toggle"; + + /// <summary> Default text to be displayed on write button. </summary> + public const string ButtonDelayText = "Delay"; /// <summary> Title of sensitivity chart. </summary> public const string SensitivityChartTitle = "Sensitivity"; |