aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx/Common/Locale/LocaleManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx/Common/Locale/LocaleManager.cs')
-rw-r--r--src/Ryujinx/Common/Locale/LocaleManager.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Ryujinx/Common/Locale/LocaleManager.cs b/src/Ryujinx/Common/Locale/LocaleManager.cs
index 257611e6..96f64876 100644
--- a/src/Ryujinx/Common/Locale/LocaleManager.cs
+++ b/src/Ryujinx/Common/Locale/LocaleManager.cs
@@ -139,9 +139,11 @@ namespace Ryujinx.Ava.Common.Locale
foreach (var item in locale)
{
- this[item.Key] = item.Value;
+ _localeStrings[item.Key] = item.Value;
}
+ OnPropertyChanged("Item");
+
LocaleChanged?.Invoke();
}