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 9d7ac85 commit 7934764Copy full SHA for 7934764
Flow.Launcher/ViewModel/PluginViewModel.cs
@@ -132,6 +132,8 @@ public double PluginSearchDelayTime
132
public Control BottomPart2 => IsExpanded ? _bottomPart2 ??= new InstalledPluginDisplayBottomData() : null;
133
134
public bool HasSettingControl =>
135
+ // Here we do not check if the plugin is initialized successfully
136
+ // So we can let users change settings for initializing or initialization failed plugins
137
PluginPair.Plugin is ISettingProvider &&
138
(PluginPair.Plugin is not JsonRPCPluginBase jsonRPCPluginBase || // Is not JsonRPC plugin
139
jsonRPCPluginBase.NeedCreateSettingPanel()); // Is JsonRPC plugin and need to create setting panel
0 commit comments