mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix Unassigned Terms
This commit is contained in:
parent
9b84f6c559
commit
6a0b190120
1 changed files with 5 additions and 2 deletions
|
|
@ -16,6 +16,9 @@ namespace Flow.Launcher.Plugin
|
|||
{
|
||||
Search = search;
|
||||
RawQuery = rawQuery;
|
||||
#pragma warning disable 618 Legacy Support
|
||||
Terms = terms;
|
||||
#pragma warning restore 618
|
||||
SearchTerms = searchTerms;
|
||||
ActionKeyword = actionKeyword;
|
||||
}
|
||||
|
|
@ -38,7 +41,7 @@ namespace Flow.Launcher.Plugin
|
|||
/// The search string split into a string array.
|
||||
/// </summary>
|
||||
public string[] SearchTerms { get; init; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// The raw query split into a string array
|
||||
/// </summary>
|
||||
|
|
@ -56,7 +59,7 @@ namespace Flow.Launcher.Plugin
|
|||
/// User can set multiple action keywords seperated by ';'
|
||||
/// </summary>
|
||||
public const string ActionKeywordSeparator = ";";
|
||||
|
||||
|
||||
[Obsolete("Typo")]
|
||||
public const string ActionKeywordSeperater = ActionKeywordSeparator;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue