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 67c940f commit 950a4a0Copy full SHA for 950a4a0
Flow.Launcher/ViewModel/PluginViewModel.cs
@@ -120,8 +120,9 @@ public double PluginSearchDelayTime
120
private Control _bottomPart2;
121
public Control BottomPart2 => IsExpanded ? _bottomPart2 ??= new InstalledPluginDisplayBottomData() : null;
122
123
- public bool HasSettingControl => PluginPair.Plugin is ISettingProvider &&
+ 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());
127
128
public Control SettingControl
0 commit comments