From f7d353a8d0287dd1a7f3e0f2bae0f41ce17b97f1 Mon Sep 17 00:00:00 2001
From: Serge <5920850+seerge@users.noreply.github.com>
Date: Mon, 11 Mar 2024 15:04:23 +0100
Subject: [PATCH] Visual Mode label
---
app/Properties/Strings.Designer.cs | 4 ++--
app/Properties/Strings.resx | 2 +-
app/Settings.cs | 4 ++--
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/app/Properties/Strings.Designer.cs b/app/Properties/Strings.Designer.cs
index 55c13aef..bf341014 100644
--- a/app/Properties/Strings.Designer.cs
+++ b/app/Properties/Strings.Designer.cs
@@ -1892,9 +1892,9 @@ namespace GHelper.Properties {
///
/// Looks up a localized string similar to Visual Mode.
///
- internal static string ViualMode {
+ internal static string VisualMode {
get {
- return ResourceManager.GetString("ViualMode", resourceCulture);
+ return ResourceManager.GetString("VisualMode", resourceCulture);
}
}
diff --git a/app/Properties/Strings.resx b/app/Properties/Strings.resx
index ef5f01cd..e4cf0a16 100644
--- a/app/Properties/Strings.resx
+++ b/app/Properties/Strings.resx
@@ -728,7 +728,7 @@ Do you still want to continue?
Vibration Strength
-
+
Visual Mode
diff --git a/app/Settings.cs b/app/Settings.cs
index 2aa5c24d..b823f6ed 100644
--- a/app/Settings.cs
+++ b/app/Settings.cs
@@ -268,13 +268,13 @@ namespace GHelper
if (isOled)
{
- labelGammaTitle.Text = Properties.Strings.FlickerFreeDimming + " / " + Properties.Strings.ViualMode;
+ labelGammaTitle.Text = Properties.Strings.FlickerFreeDimming + " / " + Properties.Strings.VisualMode;
VisualiseBrightness();
sliderGamma.ValueChanged += SliderGamma_ValueChanged;
sliderGamma.MouseUp += SliderGamma_ValueChanged;
} else
{
- labelGammaTitle.Text = Properties.Strings.ViualMode;
+ labelGammaTitle.Text = Properties.Strings.VisualMode;
}
var gamuts = VisualControl.GetGamutModes();