This commit is contained in:
bao-qian
2016-05-21 00:16:58 +01:00
parent 3cd405e9ea
commit b49e45827f
9 changed files with 62 additions and 48 deletions

View File

@@ -132,6 +132,8 @@ 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;
@@ -162,7 +164,6 @@ namespace Wox
#endregion
LoadLanguages();
settingsLoaded = true;
}