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 6409c19 commit a9a705fCopy full SHA for a9a705f
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