mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
feat: text
This commit is contained in:
parent
bc1f9d3734
commit
5fcd01224c
2 changed files with 4 additions and 3 deletions
|
|
@ -168,9 +168,9 @@
|
|||
<system:String x:Key="homePageHistoryTooltip">Choose the type of history to show on the home page</system:String>
|
||||
<system:String x:Key="queryHistory">Query History</system:String>
|
||||
<system:String x:Key="executedHistory">Last Opened History</system:String>
|
||||
<system:String x:Key="historyQueryResultsForHomePage">Show History Query Results in Home Page</system:String>
|
||||
<system:String x:Key="historyLastOpenedResultsForHomePage">Show History Last Opened Results in Home Page</system:String>
|
||||
<system:String x:Key="historyResultsCountForHomePage">Maximum History Results Shown in Home Page</system:String>
|
||||
<system:String x:Key="historyQueryResultsForHomePage">Show Query History</system:String>
|
||||
<system:String x:Key="historyLastOpenedResultsForHomePage">Show Last Opened History</system:String>
|
||||
<system:String x:Key="historyResultsCountForHomePage">Maximum History Results Shown</system:String>
|
||||
<system:String x:Key="homeToggleBoxToolTip">This can only be edited if plugin supports Home feature and Home Page is enabled.</system:String>
|
||||
<system:String x:Key="showAtTopmost">Show Search Window at Foremost</system:String>
|
||||
<system:String x:Key="showAtTopmostToolTip">Overrides other programs' 'Always on Top' setting and displays Flow in the foremost position.</system:String>
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@ public class LastOpenedHistory
|
|||
ExecutedDateTime = DateTime.Now
|
||||
};
|
||||
|
||||
// Aparenta estar duplicando...
|
||||
var existing = Items.FirstOrDefault(x => x.OriginQuery.RawQuery == item.OriginQuery.RawQuery && x.PluginID == item.PluginID);
|
||||
if (existing != null)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue