Skip to content

Commit dd73e4b

Browse files
committed
Fix topmost score issue
1 parent 9850e9d commit dd73e4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher/ViewModel/MainViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1494,7 +1494,7 @@ public void UpdateResultView(ICollection<ResultsForUpdate> resultsForUpdates)
14941494
{
14951495
if (_topMostRecord.IsTopMost(result))
14961496
{
1497-
result.Score = 100000; //Result.MaxScore;
1497+
result.Score = Result.MaxScore;
14981498
}
14991499
else
15001500
{

0 commit comments

Comments
 (0)