Skip to content

Commit ca79994

Browse files
committed
Change to HideActionKeywordPanel
1 parent c9f2a14 commit ca79994

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Flow.Launcher.Plugin/PluginMetadata.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ internal set
3434

3535
public List<string> ActionKeywords { get; set; }
3636

37-
public bool AllowModifyActionKeywords { get; set; } = true;
37+
public bool HideActionKeywordPanel { get; set; }
3838

3939
public string IcoPath { get; set;}
4040

Flow.Launcher/ViewModel/PluginViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public Control SettingControl
9999
: null;
100100
private ImageSource _image = ImageLoader.MissingImage;
101101

102-
public Visibility ActionKeywordsVisibility => PluginPair.Metadata.AllowModifyActionKeywords ? Visibility.Visible : Visibility.Collapsed;
102+
public Visibility ActionKeywordsVisibility => PluginPair.Metadata.HideActionKeywordPanel ? Visibility.Collapsed : Visibility.Visible;
103103
public string InitilizaTime => PluginPair.Metadata.InitTime + "ms";
104104
public string QueryTime => PluginPair.Metadata.AvgQueryTime + "ms";
105105
public string Version => InternationalizationManager.Instance.GetTranslation("plugin_query_version") + " " + PluginPair.Metadata.Version;

Plugins/Flow.Launcher.Plugin.Explorer/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"*",
88
"*"
99
],
10-
"AllowModifyActionKeywords": false,
10+
"HideActionKeywordPanel": true,
1111
"Name": "Explorer",
1212
"Description": "Find and manage files and folders via Windows Search or Everything",
1313
"Author": "Jeremy Wu",

Plugins/Flow.Launcher.Plugin.WebSearch/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"yahoo",
2424
"bd"
2525
],
26-
"AllowModifyActionKeywords": false,
26+
"HideActionKeywordPanel": true,
2727
"Name": "Web Searches",
2828
"Description": "Provide the web search ability",
2929
"Author": "qianlifeng",

0 commit comments

Comments
 (0)