diff --git a/Wox/SettingWindow.xaml.cs b/Wox/SettingWindow.xaml.cs index cf7da10366..e0a1df8da1 100644 --- a/Wox/SettingWindow.xaml.cs +++ b/Wox/SettingWindow.xaml.cs @@ -120,7 +120,6 @@ namespace Wox cbIgnoreHotkeysOnFullscreen.IsChecked = _settings.IgnoreHotkeysOnFullscreen; AutoUpdatesCheckBox.IsChecked = _settings.AutoUpdates; - LoadLanguages(); comboMaxResultsToShow.ItemsSource = Enumerable.Range(2, 16); var maxResults = _settings.MaxResultsToShow; comboMaxResultsToShow.SelectedItem = maxResults == 0 ? 6 : maxResults; @@ -151,6 +150,7 @@ namespace Wox #endregion + LoadLanguages(); settingsLoaded = true; }