wallpaper: removing subtle sharpeing for fullscreen wallpapers - kept it on thumbnails. Fix #2041

This commit is contained in:
Lemmy
2026-03-03 18:48:21 -05:00
parent ba5f933c58
commit f70966558d
+2 -2
View File
@@ -374,8 +374,8 @@ Singleton {
const srcEsc = sourcePath.replace(/'/g, "'\\''");
const dstEsc = outputPath.replace(/'/g, "'\\''");
// Use Lanczos filter for high-quality downscaling, subtle unsharp mask, and PNG for lossless output
const command = `magick '${srcEsc}' -auto-orient -filter Lanczos -resize '${width}x${height}^' -unsharp 0x0.5 '${dstEsc}'`;
// Use Lanczos filter for high-quality downscaling and PNG for lossless output
const command = `magick '${srcEsc}' -auto-orient -filter Lanczos -resize '${width}x${height}^' '${dstEsc}'`;
runProcess(command, cacheKey, outputPath, sourcePath);
}