File tree Expand file tree Collapse file tree 2 files changed +1
-12
lines changed Expand file tree Collapse file tree 2 files changed +1
-12
lines changed Original file line number Diff line number Diff line change 1556
1556
CornerRadius =" 36"
1557
1557
ToolTip =" {DynamicResource LabelUpdateToolTip}"
1558
1558
Visibility =" {Binding LabelUpdate, Converter={StaticResource BoolToVisibilityConverter}}" />
1559
- <Border
1560
- x : Name =" Labelinstalled"
1561
- Height =" 12"
1562
- Margin =" 0,10,8,0"
1563
- Padding =" 6,2,6,2"
1564
- HorizontalAlignment =" Right"
1565
- VerticalAlignment =" Top"
1566
- Background =" {DynamicResource ToggleSwitchFillOn}"
1567
- CornerRadius =" 36"
1568
- ToolTip =" {DynamicResource LabelInstalledToolTip}"
1569
- Visibility =" {Binding LabelInstalled, Converter={StaticResource BoolToVisibilityConverter}}" />
1570
1559
</StackPanel >
1571
1560
1572
1561
<StackPanel
Original file line number Diff line number Diff line change @@ -392,7 +392,7 @@ private bool PluginStoreFilter(object item)
392
392
{
393
393
if ( string . IsNullOrEmpty ( pluginStoreFilterTxb . Text ) )
394
394
return true ;
395
- if ( item is UserPlugin model )
395
+ if ( item is PluginStoreItemViewModel model )
396
396
{
397
397
return StringMatcher . FuzzySearch ( pluginStoreFilterTxb . Text , model . Name ) . IsSearchPrecisionScoreMet ( )
398
398
|| StringMatcher . FuzzySearch ( pluginStoreFilterTxb . Text , model . Description ) . IsSearchPrecisionScoreMet ( ) ;
You can’t perform that action at this time.
0 commit comments