mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 20:27:36 +02:00
Fix #608
This commit is contained in:
@@ -120,7 +120,6 @@ namespace Wox
|
|||||||
cbIgnoreHotkeysOnFullscreen.IsChecked = _settings.IgnoreHotkeysOnFullscreen;
|
cbIgnoreHotkeysOnFullscreen.IsChecked = _settings.IgnoreHotkeysOnFullscreen;
|
||||||
AutoUpdatesCheckBox.IsChecked = _settings.AutoUpdates;
|
AutoUpdatesCheckBox.IsChecked = _settings.AutoUpdates;
|
||||||
|
|
||||||
LoadLanguages();
|
|
||||||
comboMaxResultsToShow.ItemsSource = Enumerable.Range(2, 16);
|
comboMaxResultsToShow.ItemsSource = Enumerable.Range(2, 16);
|
||||||
var maxResults = _settings.MaxResultsToShow;
|
var maxResults = _settings.MaxResultsToShow;
|
||||||
comboMaxResultsToShow.SelectedItem = maxResults == 0 ? 6 : maxResults;
|
comboMaxResultsToShow.SelectedItem = maxResults == 0 ? 6 : maxResults;
|
||||||
@@ -151,6 +150,7 @@ namespace Wox
|
|||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
LoadLanguages();
|
||||||
settingsLoaded = true;
|
settingsLoaded = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user