From c87bd1f04059f40f3dadd4e0b5bfcd860db67770 Mon Sep 17 00:00:00 2001 From: Jacob Palecki Date: Tue, 22 Sep 2020 14:41:56 -0700 Subject: Rename write button --- grapher/Constants/Constants.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'grapher/Constants') diff --git a/grapher/Constants/Constants.cs b/grapher/Constants/Constants.cs index a51b09c..2ce6763 100644 --- a/grapher/Constants/Constants.cs +++ b/grapher/Constants/Constants.cs @@ -60,7 +60,7 @@ namespace grapher /// Left placement of charts when narrowed public const int NarrowChartLeft = 482; - public const int WriteButtonVerticalOffset = 50; + public const int WriteButtonVerticalOffset = 80; /// Format string for shortened x and y textboxes. public const string ShortenedFormatString = "0.###"; @@ -84,7 +84,7 @@ namespace grapher public const string AccelDropDownDefaultShortText = "Accel Type"; /// Default text to be displayed on write button. - public const string WriteButtonDefaultText = "Write To Driver"; + public const string WriteButtonDefaultText = "Apply"; /// Default text to be displayed on write button. public const string WriteButtonDelayText = "Delay"; -- cgit v1.2.3 From f4ff6334df8a3fd66d13082606b69a78fa592237 Mon Sep 17 00:00:00 2001 From: Jacob Palecki Date: Tue, 22 Sep 2020 15:26:08 -0700 Subject: Remove sigmoidgain, only allow one instance of grapher to run at a time --- grapher/Constants/Constants.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'grapher/Constants') diff --git a/grapher/Constants/Constants.cs b/grapher/Constants/Constants.cs index 2ce6763..b41ffa2 100644 --- a/grapher/Constants/Constants.cs +++ b/grapher/Constants/Constants.cs @@ -21,9 +21,6 @@ namespace grapher /// Ratio of max (X, Y) used in "by component" calulations to those used in "whole vector" calculations. public const double XYToCombinedRatio = 1.4; - /// Possible options to display in a layout. - public const int PossibleOptionsCount = 6; - /// Separation between X and Y active value labels, in pixels. public const int ActiveLabelXYSeparation = 2; @@ -60,6 +57,7 @@ namespace grapher /// Left placement of charts when narrowed public const int NarrowChartLeft = 482; + /// Vertical placement of write button above bottom of sensitivity graph public const int WriteButtonVerticalOffset = 80; /// Format string for shortened x and y textboxes. -- cgit v1.2.3