Skip to content

Commit

Permalink
NR Fix Languages property binding
Browse files Browse the repository at this point in the history
  • Loading branch information
jbe2277 committed Dec 19, 2023
1 parent ecbaf73 commit 992c993
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ private SettingsViewModel InitializeViewModel(SettingsViewModel vm)
vm.EnableDeveloperSettingsCommand = enableDeveloperSettingsCommand;
vm.SignInCommand = dataController.SignInCommand;
vm.SignOutCommand = dataController.SignOutCommand;
vm.Languages = [ "Auto", "en-US", "de-DE" ];
vm.Languages = new[] { "Auto", "en-US", "de-DE" };
vm.SelectedLanguage = appSettings.Language ?? "Auto";
vm.PropertyChanged += DeveloperSettingsViewModelPropertyChanged;
vm.Initialize();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<SingleProject>true</SingleProject>

<!-- Display name -->
<ApplicationTitle>Waf NewsReader</ApplicationTitle>
<ApplicationTitle>NewsReader</ApplicationTitle>

<!-- App Identifier -->
<ApplicationId>waf.newsreader</ApplicationId>
Expand Down

0 comments on commit 992c993

Please sign in to comment.