mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
update revert to global wildcard logic
This commit is contained in:
parent
596b5b803e
commit
69f58518b2
1 changed files with 1 additions and 2 deletions
|
|
@ -78,12 +78,11 @@ namespace Flow.Launcher.Plugin.Explorer.Views
|
|||
|
||||
var oldActionKeyword = CurrentActionKeyword.Keyword;
|
||||
|
||||
|
||||
// == because of nullable
|
||||
if (Enabled == false || !settingsViewModel.IsActionKeywordAlreadyAssigned(ActionKeyword))
|
||||
{
|
||||
// Update View Data
|
||||
CurrentActionKeyword.Keyword = ActionKeyword;
|
||||
CurrentActionKeyword.Keyword = Enabled == true ? ActionKeyword : Query.GlobalPluginWildcardSign;
|
||||
CurrentActionKeyword.Enabled = Enabled;
|
||||
|
||||
switch (Enabled)
|
||||
|
|
|
|||
Loading…
Reference in a new issue