We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 950a4a0 commit 6409c19Copy full SHA for 6409c19
Flow.Launcher/ViewModel/PluginViewModel.cs
@@ -123,7 +123,8 @@ public double PluginSearchDelayTime
123
public bool HasSettingControl =>
124
PluginManager.IsInitFailed(PluginPair.Metadata.ID) && // Do not show setting panel for init failed plugins
125
PluginPair.Plugin is ISettingProvider &&
126
- (PluginPair.Plugin is not JsonRPCPluginBase jsonRPCPluginBase || jsonRPCPluginBase.NeedCreateSettingPanel());
+ (PluginPair.Plugin is not JsonRPCPluginBase jsonRPCPluginBase || // Is not JsonRPC plugin
127
+ jsonRPCPluginBase.NeedCreateSettingPanel()); // Is JsonRPC plugin and need to create setting panel
128
129
public Control SettingControl
130
=> IsExpanded
0 commit comments