0
0
mirror of https://github.com/sp-tarkov/launcher.git synced 2025-02-12 16:50:43 -05:00

Merge pull request 'fix wrong method on property changed' (!36) from waffle.lord/Launcher:fix/locale-selection into master

Reviewed-on: SPT-AKI/Launcher#36
(cherry picked from commit 7ddfbb25e4ac93044b8922b80598f739245d7337)
This commit is contained in:
IsWaffle 2024-01-26 14:44:20 +00:00 committed by Dev
parent 6f9dce171f
commit 58863b3d66

View File

@ -26,7 +26,7 @@ namespace Aki.Launcher.Models.Launcher
{
_SelectedLocale = value;
RaisePropertyChanged(nameof(SelectedLocale));
LocalizationProvider.LoadLocaleFromFile(value);
LocalizationProvider.LoadLocalByName(value);
}
}
}