Skip to content

Commit

Permalink
Code Quality: Fixed DecodePixelType
Browse files Browse the repository at this point in the history
  • Loading branch information
yaira2 committed Feb 15, 2024
1 parent e8c2b1a commit 0f9c317
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Files.App/Helpers/BitmapHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ internal static class BitmapHelper
{
image.DecodePixelWidth = decodeSize;
image.DecodePixelHeight = decodeSize;
image.DecodePixelType = DecodePixelType.Logical;
}
image.DecodePixelType = DecodePixelType.Logical;
await image.SetSourceAsync(ms.AsRandomAccessStream());
return image;
}
Expand Down

0 comments on commit 0f9c317

Please sign in to comment.