mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix List Icon Blurry
This commit is contained in:
parent
e5a19cc9e0
commit
3aa3cf3cff
2 changed files with 3 additions and 2 deletions
|
|
@ -23,7 +23,7 @@ namespace Flow.Launcher.Infrastructure.Image
|
||||||
private static readonly bool EnableImageHash = true;
|
private static readonly bool EnableImageHash = true;
|
||||||
public static ImageSource MissingImage { get; } = new BitmapImage(new Uri(Constant.MissingImgIcon));
|
public static ImageSource MissingImage { get; } = new BitmapImage(new Uri(Constant.MissingImgIcon));
|
||||||
public static ImageSource LoadingImage { get; } = new BitmapImage(new Uri(Constant.LoadingImgIcon));
|
public static ImageSource LoadingImage { get; } = new BitmapImage(new Uri(Constant.LoadingImgIcon));
|
||||||
public const int SmallIconSize = 32;
|
public const int SmallIconSize = 64;
|
||||||
public const int FullIconSize = 256;
|
public const int FullIconSize = 256;
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -58,9 +58,9 @@
|
||||||
<ColumnDefinition Width="Auto" MinWidth="8" />
|
<ColumnDefinition Width="Auto" MinWidth="8" />
|
||||||
</Grid.ColumnDefinitions>
|
</Grid.ColumnDefinitions>
|
||||||
<StackPanel
|
<StackPanel
|
||||||
|
x:Name="HotkeyArea"
|
||||||
Grid.Column="2"
|
Grid.Column="2"
|
||||||
Margin="0,0,10,0"
|
Margin="0,0,10,0"
|
||||||
x:Name="HotkeyArea"
|
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
Visibility="{Binding ShowOpenResultHotkey}">
|
Visibility="{Binding ShowOpenResultHotkey}">
|
||||||
<TextBlock
|
<TextBlock
|
||||||
|
|
@ -105,6 +105,7 @@
|
||||||
Margin="0,0,0,0"
|
Margin="0,0,0,0"
|
||||||
HorizontalAlignment="Center"
|
HorizontalAlignment="Center"
|
||||||
IsHitTestVisible="False"
|
IsHitTestVisible="False"
|
||||||
|
RenderOptions.BitmapScalingMode="Fant"
|
||||||
Source="{Binding Image, TargetNullValue={x:Null}}"
|
Source="{Binding Image, TargetNullValue={x:Null}}"
|
||||||
Stretch="Uniform"
|
Stretch="Uniform"
|
||||||
Visibility="{Binding ShowIcon}">
|
Visibility="{Binding ShowIcon}">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue