Change to HideActionKeywordPanel

This commit is contained in:
Jack251970 2025-02-28 09:25:20 +08:00
parent c9f2a1427d
commit ca79994543
4 changed files with 4 additions and 4 deletions

View file

@ -34,7 +34,7 @@ namespace Flow.Launcher.Plugin
public List<string> ActionKeywords { get; set; }
public bool AllowModifyActionKeywords { get; set; } = true;
public bool HideActionKeywordPanel { get; set; }
public string IcoPath { get; set;}

View file

@ -99,7 +99,7 @@ namespace Flow.Launcher.ViewModel
: null;
private ImageSource _image = ImageLoader.MissingImage;
public Visibility ActionKeywordsVisibility => PluginPair.Metadata.AllowModifyActionKeywords ? Visibility.Visible : Visibility.Collapsed;
public Visibility ActionKeywordsVisibility => PluginPair.Metadata.HideActionKeywordPanel ? Visibility.Collapsed : Visibility.Visible;
public string InitilizaTime => PluginPair.Metadata.InitTime + "ms";
public string QueryTime => PluginPair.Metadata.AvgQueryTime + "ms";
public string Version => InternationalizationManager.Instance.GetTranslation("plugin_query_version") + " " + PluginPair.Metadata.Version;

View file

@ -7,7 +7,7 @@
"*",
"*"
],
"AllowModifyActionKeywords": false,
"HideActionKeywordPanel": true,
"Name": "Explorer",
"Description": "Find and manage files and folders via Windows Search or Everything",
"Author": "Jeremy Wu",

View file

@ -23,7 +23,7 @@
"yahoo",
"bd"
],
"AllowModifyActionKeywords": false,
"HideActionKeywordPanel": true,
"Name": "Web Searches",
"Description": "Provide the web search ability",
"Author": "qianlifeng",