We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 163af5c commit dad5f5aCopy full SHA for dad5f5a
Plugins/Flow.Launcher.Plugin.Shell/ShellSetting.xaml.cs
@@ -30,7 +30,7 @@ private void CMDSetting_OnLoaded(object sender, RoutedEventArgs re)
30
31
ShowOnlyMostUsedCMDs.IsChecked = _settings.ShowOnlyMostUsedCMDs;
32
33
- if ((bool)!ShowOnlyMostUsedCMDs.IsChecked)
+ if (ShowOnlyMostUsedCMDs.IsChecked != true)
34
ShowOnlyMostUsedCMDsNumber.IsEnabled = false;
35
36
ShowOnlyMostUsedCMDsNumber.ItemsSource = new List<int>() { 5, 10, 20 };
0 commit comments