From 7c1f14845bc948e9ea25908e96099203d9433a69 Mon Sep 17 00:00:00 2001 From: a1xd <68629610+a1xd@users.noreply.github.com> Date: Tue, 6 Apr 2021 01:21:42 -0400 Subject: update wrapper + writer to handle lut grapher is building but applying options still broken for the most part --- grapher/Constants/Constants.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'grapher/Constants') diff --git a/grapher/Constants/Constants.cs b/grapher/Constants/Constants.cs index 446f5fa..d2e747c 100644 --- a/grapher/Constants/Constants.cs +++ b/grapher/Constants/Constants.cs @@ -120,6 +120,8 @@ namespace grapher /// Default name of settings file. public const string DefaultSettingsFileName = @"settings.json"; + public const string GuiConfigFileName = ".config"; + /// Text to direcitonality panel title when panel is closed. public const string DirectionalityTitleClosed = "Anisotropy \u25BC"; -- cgit v1.2.3 From aba8e7757da8d2a542415257ac845f40f28f78a0 Mon Sep 17 00:00:00 2001 From: Jacob Palecki Date: Mon, 5 Apr 2021 23:52:46 -0700 Subject: Resize vertically for correctness --- grapher/Constants/Constants.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'grapher/Constants') 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; /// Height of sensitivity chart when displayed alone. - public const int SensitivityChartAloneHeight = 455; + public const int SensitivityChartAloneHeight = 480; /// Height of sensitivity chart when displayed alongside Velocity and Gain charts. public const int SensitivityChartTogetherHeight = 328; @@ -64,6 +64,9 @@ namespace grapher /// Vertical placement of write button above bottom of sensitivity graph public const int ButtonVerticalOffset = 60; + /// Vertical placement of directionality panel below top of containing form + public const int DirectionalityVerticalOffset = 285; + /// Padding between directionality title and containing panel public const int DirectionalityTitlePad = 8; -- cgit v1.2.3 From 2f4b0a23a262930c12e06fdfe1a0aa4356191914 Mon Sep 17 00:00:00 2001 From: a1xd <68629610+a1xd@users.noreply.github.com> Date: Tue, 21 Sep 2021 21:50:02 -0400 Subject: rename disable button to reset --- grapher/Constants/Constants.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'grapher/Constants') diff --git a/grapher/Constants/Constants.cs b/grapher/Constants/Constants.cs index b99f662..703c488 100644 --- a/grapher/Constants/Constants.cs +++ b/grapher/Constants/Constants.cs @@ -104,7 +104,10 @@ namespace grapher /// Default text to be displayed on button delay. public const string ButtonDelayText = "Delay"; - + + /// Default text to be displayed on button delay. + public const string ResetButtonText = "Reset"; + /// Title of sensitivity chart. public const string SensitivityChartTitle = "Sensitivity"; -- cgit v1.2.3