Skip to content

Commit f01ccbf

Browse files
committed
Change function name
1 parent 82f6788 commit f01ccbf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Flow.Launcher.Infrastructure/Image/ImageLoader.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ private static ImageResult GetThumbnailResult(ref string path, bool loadFullImag
253253
{
254254
try
255255
{
256-
image = LoadFullSvgImage(path, loadFullImage);
256+
image = LoadSvgImage(path, loadFullImage);
257257
type = ImageType.FullImageFile;
258258
}
259259
catch (System.Exception)
@@ -372,7 +372,7 @@ private static ImageSource LoadFullImage(string path)
372372
return image;
373373
}
374374

375-
private static ImageSource LoadFullSvgImage(string path, bool loadFullImage = false)
375+
private static ImageSource LoadSvgImage(string path, bool loadFullImage = false)
376376
{
377377
// Set up drawing settings
378378
var desiredHeight = loadFullImage ? FullImageSize : SmallIconSize;

0 commit comments

Comments
 (0)