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.
2 parents 59e4fb8 + a9a705f commit d9cc67cCopy full SHA for d9cc67c
Flow.Launcher/ViewModel/PluginViewModel.cs
@@ -121,7 +121,7 @@ public double PluginSearchDelayTime
121
public Control BottomPart2 => IsExpanded ? _bottomPart2 ??= new InstalledPluginDisplayBottomData() : null;
122
123
public bool HasSettingControl =>
124
- PluginManager.IsInitFailed(PluginPair.Metadata.ID) && // Do not show setting panel for init failed plugins
+ !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 || // Is not JsonRPC plugin
127
jsonRPCPluginBase.NeedCreateSettingPanel()); // Is JsonRPC plugin and need to create setting panel
0 commit comments