Merge pull request #815 from onesounds/FixPixelateIconPluginStore

Change Icon Render in plugin /  plugin store
This commit is contained in:
Dobin Park 2021-11-15 08:46:17 +09:00 committed by GitHub
commit 83a678021f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -846,7 +846,9 @@
Height="32"
Margin="32,0,0,0"
FlowDirection="LeftToRight"
Source="{Binding Image, IsAsync=True}" />
RenderOptions.BitmapScalingMode="HighQuality"
Source="{Binding Image, IsAsync=True}"
Stretch="Uniform" />
</StackPanel>
<StackPanel Grid.Column="1" Margin="12,0,14,0">
<TextBlock
@ -1253,12 +1255,17 @@
</Style.Triggers>
</Style>
</StackPanel.Style>
<Image
Width="32"
Height="32"
Margin="8,0,6,0"
VerticalAlignment="Center"
Source="{Binding IcoPath, IsAsync=True}" />
<Border Margin="8,0,0,0">
<Image
Width="32"
Height="32"
Margin="0,0,0,0"
VerticalAlignment="Center"
RenderOptions.BitmapScalingMode="HighQuality"
Source="{Binding IcoPath, IsAsync=True}"
Stretch="Uniform" />
</Border>
</StackPanel>
<StackPanel
Grid.Column="1"