File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,8 @@ public SearchDelayTime? PluginSearchDelayTime
105105 private Control _bottomPart3 ;
106106 public Control BottomPart3 => IsExpanded ? _bottomPart3 ??= new InstalledPluginDisplayBottomData ( ) : null ;
107107
108- public bool HasSettingControl => PluginPair . Plugin is ISettingProvider && ( PluginPair . Plugin is not JsonRPCPluginBase jsonRPCPluginBase || jsonRPCPluginBase . NeedCreateSettingPanel ( ) ) ;
108+ public bool HasSettingControl => PluginPair . Plugin is ISettingProvider &&
109+ ( PluginPair . Plugin is not JsonRPCPluginBase jsonRPCPluginBase || jsonRPCPluginBase . NeedCreateSettingPanel ( ) ) ;
109110 public Control SettingControl
110111 => IsExpanded
111112 ? _settingControl
@@ -127,7 +128,9 @@ public Control SettingControl
127128 PluginPair . Metadata . AvgQueryTime + "ms" ;
128129 public string ActionKeywordsText => string . Join ( Query . ActionKeywordSeparator , PluginPair . Metadata . ActionKeywords ) ;
129130 public int Priority => PluginPair . Metadata . Priority ;
130- public string SearchDelayTimeText => PluginPair . Metadata . SearchDelayTime == null ? App . API . GetTranslation ( "default" ) : App . API . GetTranslation ( $ "SearchDelayTime{ PluginPair . Metadata . SearchDelayTime } ") ;
131+ public string SearchDelayTimeText => PluginPair . Metadata . SearchDelayTime == null ?
132+ App . API . GetTranslation ( "default" ) :
133+ App . API . GetTranslation ( $ "SearchDelayTime{ PluginPair . Metadata . SearchDelayTime } ") ;
131134 public Infrastructure . UserSettings . Plugin PluginSettingsObject { get ; init ; }
132135
133136 public void OnActionKeywordsChanged ( )
You can’t perform that action at this time.
0 commit comments