diff options
| author | Jacob Palecki <[email protected]> | 2021-07-03 14:52:54 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2021-07-03 14:52:54 -0700 |
| commit | 44c20e12d53434c47b08dbe855567316159d0469 (patch) | |
| tree | b64b844f16168a62addb8af98f2786de131824ff /grapher/Models | |
| parent | Format mostly correct (diff) | |
| download | rawaccel-44c20e12d53434c47b08dbe855567316159d0469.tar.xz rawaccel-44c20e12d53434c47b08dbe855567316159d0469.zip | |
Small fixes, guide additions, tweaks
Diffstat (limited to 'grapher/Models')
| -rw-r--r-- | grapher/Models/AccelGUI.cs | 2 | ||||
| -rw-r--r-- | grapher/Models/Options/LUT/LutApplyOptions.cs | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/grapher/Models/AccelGUI.cs b/grapher/Models/AccelGUI.cs index 324dcb1..9ca7fed 100644 --- a/grapher/Models/AccelGUI.cs +++ b/grapher/Models/AccelGUI.cs @@ -151,9 +151,9 @@ namespace grapher public void RefreshActive() { + UpdateShownActiveValues(Settings.UserSettings); UpdateGraph(); UpdateInputManagers(); - UpdateShownActiveValues(Settings.UserSettings); } public void RefreshUser() diff --git a/grapher/Models/Options/LUT/LutApplyOptions.cs b/grapher/Models/Options/LUT/LutApplyOptions.cs index 897460e..7d8c737 100644 --- a/grapher/Models/Options/LUT/LutApplyOptions.cs +++ b/grapher/Models/Options/LUT/LutApplyOptions.cs @@ -139,6 +139,7 @@ namespace grapher.Models.Options.LUT { Label.Hide(); ApplyOptions.Hide(); + ActiveValueLabel.Hide(); ShouldShow = false; } @@ -152,6 +153,7 @@ namespace grapher.Models.Options.LUT } ApplyOptions.Show(); + ActiveValueLabel.Show(); ShouldShow = true; } |