Merge pull request #290 from taooceros/PriorityScoreHigher

make priority score higher
This commit is contained in:
Jeremy Wu 2021-01-13 13:04:02 +11:00 committed by GitHub
commit 29ff073793
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -687,7 +687,7 @@ namespace Flow.Launcher.ViewModel
}
else
{
var priorityScore = metadata.Priority * 50;
var priorityScore = metadata.Priority * 150;
result.Score += _userSelectedRecord.GetSelectedCount(result) * 5 + priorityScore;
}
}