Skip to content

Commit 3aa3cf3

Browse files
committed
Fix List Icon Blurry
1 parent e5a19cc commit 3aa3cf3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Flow.Launcher.Infrastructure/Image/ImageLoader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public static class ImageLoader
2323
private static readonly bool EnableImageHash = true;
2424
public static ImageSource MissingImage { get; } = new BitmapImage(new Uri(Constant.MissingImgIcon));
2525
public static ImageSource LoadingImage { get; } = new BitmapImage(new Uri(Constant.LoadingImgIcon));
26-
public const int SmallIconSize = 32;
26+
public const int SmallIconSize = 64;
2727
public const int FullIconSize = 256;
2828

2929

Flow.Launcher/ResultListBox.xaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@
5858
<ColumnDefinition Width="Auto" MinWidth="8" />
5959
</Grid.ColumnDefinitions>
6060
<StackPanel
61+
x:Name="HotkeyArea"
6162
Grid.Column="2"
6263
Margin="0,0,10,0"
63-
x:Name="HotkeyArea"
6464
VerticalAlignment="Center"
6565
Visibility="{Binding ShowOpenResultHotkey}">
6666
<TextBlock
@@ -105,6 +105,7 @@
105105
Margin="0,0,0,0"
106106
HorizontalAlignment="Center"
107107
IsHitTestVisible="False"
108+
RenderOptions.BitmapScalingMode="Fant"
108109
Source="{Binding Image, TargetNullValue={x:Null}}"
109110
Stretch="Uniform"
110111
Visibility="{Binding ShowIcon}">

0 commit comments

Comments
 (0)