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 b25777b commit 1cf264aCopy full SHA for 1cf264a
Flow.Launcher/ViewModel/MainViewModel.cs
@@ -1646,6 +1646,8 @@ public void UpdateResultView(ICollection<ResultsForUpdate> resultsForUpdates)
1646
var deviationIndex = _topMostRecord.GetTopMostIndex(result);
1647
if (deviationIndex != -1)
1648
{
1649
+ // Adjust the score based on the result's position in the top-most list.
1650
+ // A lower deviationIndex (closer to the top) results in a higher score.
1651
result.Score = Result.MaxScore - deviationIndex;
1652
}
1653
else
0 commit comments