Skip to content

Commit 7934764

Browse files
committed
Show setting panel for initializing or initialization failed plugins
1 parent 9d7ac85 commit 7934764

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Flow.Launcher/ViewModel/PluginViewModel.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,8 @@ public double PluginSearchDelayTime
132132
public Control BottomPart2 => IsExpanded ? _bottomPart2 ??= new InstalledPluginDisplayBottomData() : null;
133133

134134
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
135137
PluginPair.Plugin is ISettingProvider &&
136138
(PluginPair.Plugin is not JsonRPCPluginBase jsonRPCPluginBase || // Is not JsonRPC plugin
137139
jsonRPCPluginBase.NeedCreateSettingPanel()); // Is JsonRPC plugin and need to create setting panel

0 commit comments

Comments
 (0)