diff --git a/src/preload.js b/src/preload.js index e5537b5..b9e4278 100644 --- a/src/preload.js +++ b/src/preload.js @@ -651,7 +651,7 @@ getBase64Ico = async filepath => { return compressedImage } -getCompressedIco = async (img, width = 40) => { +getCompressedIco = async (img, width = 80) => { let compressedImage = await pictureCompress({ img: img, width: width, height: width, type: 'png', quality: 1 }) return compressedImage.img }