mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 11:16:51 +02:00
Contron panel item priority should be lower when compared to programs.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user