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 bf44637 commit 8e127d0Copy full SHA for 8e127d0
Flow.Launcher/Storage/QueryHistory.cs
@@ -4,7 +4,6 @@
4
using System.Text.Json.Serialization;
5
using Flow.Launcher.Core.Plugin;
6
using Flow.Launcher.Plugin;
7
-using Svg;
8
9
namespace Flow.Launcher.Storage
10
{
Flow.Launcher/ViewModel/MainViewModel.cs
@@ -1333,7 +1333,9 @@ private List<Result> GetHistoryItems(IEnumerable<LastOpenedHistoryResult> histor
1333
1334
// Max history results to return for display
1335
if (maxResult.HasValue)
1336
+ {
1337
historyItems = historyItems.Take(maxResult.Value);
1338
+ }
1339
1340
foreach (var item in historyItems)
1341
0 commit comments