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
105
105
private Control _bottomPart3 ;
106
106
public Control BottomPart3 => IsExpanded ? _bottomPart3 ??= new InstalledPluginDisplayBottomData ( ) : null ;
107
107
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 ( ) ) ;
109
110
public Control SettingControl
110
111
=> IsExpanded
111
112
? _settingControl
@@ -127,7 +128,9 @@ public Control SettingControl
127
128
PluginPair . Metadata . AvgQueryTime + "ms" ;
128
129
public string ActionKeywordsText => string . Join ( Query . ActionKeywordSeparator , PluginPair . Metadata . ActionKeywords ) ;
129
130
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 } ") ;
131
134
public Infrastructure . UserSettings . Plugin PluginSettingsObject { get ; init ; }
132
135
133
136
public void OnActionKeywordsChanged ( )
You can’t perform that action at this time.
0 commit comments