mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Change to HideActionKeywordPanel
This commit is contained in:
parent
c9f2a1427d
commit
ca79994543
4 changed files with 4 additions and 4 deletions
|
|
@ -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;}
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@
|
|||
"yahoo",
|
||||
"bd"
|
||||
],
|
||||
"AllowModifyActionKeywords": false,
|
||||
"HideActionKeywordPanel": true,
|
||||
"Name": "Web Searches",
|
||||
"Description": "Provide the web search ability",
|
||||
"Author": "qianlifeng",
|
||||
|
|
|
|||
Loading…
Reference in a new issue