mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Change function name
This commit is contained in:
parent
82f67884ef
commit
f01ccbf38a
1 changed files with 2 additions and 2 deletions
|
|
@ -253,7 +253,7 @@ namespace Flow.Launcher.Infrastructure.Image
|
|||
{
|
||||
try
|
||||
{
|
||||
image = LoadFullSvgImage(path, loadFullImage);
|
||||
image = LoadSvgImage(path, loadFullImage);
|
||||
type = ImageType.FullImageFile;
|
||||
}
|
||||
catch (System.Exception)
|
||||
|
|
@ -372,7 +372,7 @@ namespace Flow.Launcher.Infrastructure.Image
|
|||
return image;
|
||||
}
|
||||
|
||||
private static ImageSource LoadFullSvgImage(string path, bool loadFullImage = false)
|
||||
private static ImageSource LoadSvgImage(string path, bool loadFullImage = false)
|
||||
{
|
||||
// Set up drawing settings
|
||||
var desiredHeight = loadFullImage ? FullImageSize : SmallIconSize;
|
||||
|
|
|
|||
Loading…
Reference in a new issue