Skip to content

Commit 3d97f90

Browse files
committed
Change Plugin/Store Icon Render
1 parent b7d5f4f commit 3d97f90

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

Flow.Launcher/SettingWindow.xaml

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -846,7 +846,9 @@
846846
Height="32"
847847
Margin="32,0,0,0"
848848
FlowDirection="LeftToRight"
849-
Source="{Binding Image, IsAsync=True}" />
849+
RenderOptions.BitmapScalingMode="HighQuality"
850+
Source="{Binding Image, IsAsync=True}"
851+
Stretch="Uniform" />
850852
</StackPanel>
851853
<StackPanel Grid.Column="1" Margin="12,0,14,0">
852854
<TextBlock
@@ -1253,12 +1255,17 @@
12531255
</Style.Triggers>
12541256
</Style>
12551257
</StackPanel.Style>
1256-
<Image
1257-
Width="32"
1258-
Height="32"
1259-
Margin="8,0,6,0"
1260-
VerticalAlignment="Center"
1261-
Source="{Binding IcoPath, IsAsync=True}" />
1258+
1259+
<Border Margin="8,0,0,0">
1260+
<Image
1261+
Width="32"
1262+
Height="32"
1263+
Margin="0,0,0,0"
1264+
VerticalAlignment="Center"
1265+
RenderOptions.BitmapScalingMode="HighQuality"
1266+
Source="{Binding IcoPath, IsAsync=True}"
1267+
Stretch="Uniform" />
1268+
</Border>
12621269
</StackPanel>
12631270
<StackPanel
12641271
Grid.Column="1"

0 commit comments

Comments
 (0)