mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Explorer plugin native context menu: fix icons being drawn at 32x32
This commit is contained in:
parent
3ee870b249
commit
d97382f9fb
2 changed files with 2 additions and 1 deletions
|
|
@ -108,6 +108,7 @@
|
|||
RenderOptions.BitmapScalingMode="Fant"
|
||||
Source="{Binding Image, TargetNullValue={x:Null}}"
|
||||
Stretch="Uniform"
|
||||
StretchDirection="DownOnly"
|
||||
Style="{DynamicResource ImageIconStyle}"
|
||||
Visibility="{Binding ShowIcon}">
|
||||
<Image.Clip>
|
||||
|
|
|
|||
|
|
@ -314,7 +314,7 @@ public static class ShellContextMenuDisplayHelper
|
|||
hBitmap,
|
||||
IntPtr.Zero,
|
||||
Int32Rect.Empty,
|
||||
BitmapSizeOptions.FromWidthAndHeight(32, 32)
|
||||
BitmapSizeOptions.FromWidthAndHeight(16, 16)
|
||||
);
|
||||
|
||||
if (!DeleteObject(hBitmap))
|
||||
|
|
|
|||
Loading…
Reference in a new issue