fix: svg icons now respect icon_scale parameter

This commit is contained in:
Maksim Totmin
2026-06-17 15:12:17 +07:00
parent 434d5bc1a9
commit 7047b6b4e3
2 changed files with 26 additions and 4 deletions
+1 -1
View File
@@ -853,7 +853,7 @@ func loadImage(path string, targetSize int, faScale float64) (image.Image, error
}
if strings.HasSuffix(resolved, ".svg") {
img, err := svgToPNG(resolved, targetSize)
img, err := svgToPNG(resolved, targetSize, faScale)
if err != nil {
return nil, err
}