Skip to content

Commit

Permalink
spellcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
stefansjfw committed Sep 19, 2024
1 parent ec5fdd4 commit 89da001
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/actions/spell-check/expect.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1552,7 +1552,7 @@ Stubless
STYLECHANGED
STYLECHANGING
subkeys
SUBLANG
sublang
subquery
Superbar
sut
Expand Down
6 changes: 3 additions & 3 deletions src/settings-ui/Settings.UI/ViewModels/GeneralViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ public GeneralViewModel(ISettingsRepository<GeneralSettings> settingsRepository,
private string _backupRestoreMessageSeverity;

private int _languagesIndex;
private int _initlanguagesIndex;
private int _initLanguagesIndex;
private bool _languageChanged;

// Gets or sets a value indicating whether run powertoys on start-up.
Expand Down Expand Up @@ -793,7 +793,7 @@ public int LanguagesIndex
_languagesIndex = value;
OnPropertyChanged(nameof(LanguagesIndex));
NotifyLanguageChanged();
if (_initlanguagesIndex != value)
if (_initLanguagesIndex != value)
{
LanguageChanged = true;
}
Expand Down Expand Up @@ -1090,7 +1090,7 @@ private void InitializeLanguages()

if (item.Key.Equals(lang, StringComparison.Ordinal))
{
_initlanguagesIndex = i;
_initLanguagesIndex = i;
LanguagesIndex = i;
}

Expand Down

0 comments on commit 89da001

Please sign in to comment.