diff --git a/Flow.Launcher/ViewModel/MainViewModel.cs b/Flow.Launcher/ViewModel/MainViewModel.cs index 14f6dda39..4c5c0229c 100644 --- a/Flow.Launcher/ViewModel/MainViewModel.cs +++ b/Flow.Launcher/ViewModel/MainViewModel.cs @@ -532,9 +532,12 @@ namespace Flow.Launcher.ViewModel Hide(); } } + + // Record user selected result for result ranking + _userSelectedRecord.Add(result); + // Add item to histroy only if it is from results but not context menu or history if (queryResultsSelected) { - _userSelectedRecord.Add(result); _history.Add(result); lastHistoryIndex = 1; }