mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Contron panel item priority should be lower when compared to programs.
This commit is contained in:
parent
ae062586d7
commit
88208285a4
1 changed files with 3 additions and 1 deletions
|
|
@ -92,7 +92,9 @@ namespace Wox.Plugin.SystemPlugins.ControlPanel
|
|||
}
|
||||
}
|
||||
|
||||
return results.OrderByDescending(o => o.Score).Take(5).ToList();
|
||||
List<Result> panelItems = results.OrderByDescending(o => o.Score).Take(5).ToList();
|
||||
panelItems.ForEach(o => o.Score = 0);
|
||||
return panelItems;
|
||||
}
|
||||
|
||||
private bool MatchProgram(ControlPanelItem item, FuzzyMatcher matcher)
|
||||
|
|
|
|||
Loading…
Reference in a new issue