mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix user result set max value issue
This commit is contained in:
parent
eef2f3df8e
commit
b5e401f759
1 changed files with 1 additions and 1 deletions
|
|
@ -1473,7 +1473,7 @@ namespace Flow.Launcher.ViewModel
|
|||
{
|
||||
result.Score = int.MaxValue;
|
||||
}
|
||||
else
|
||||
else if (result.Score != int.MaxValue)
|
||||
{
|
||||
var priorityScore = metaResults.Metadata.Priority * 150;
|
||||
result.Score += _userSelectedRecord.GetSelectedCount(result) + priorityScore;
|
||||
|
|
|
|||
Loading…
Reference in a new issue