From bd1200742e266805c5f33535dd4e85ada71a181b Mon Sep 17 00:00:00 2001 From: Azgaar Date: Wed, 13 Nov 2019 00:32:47 +0300 Subject: [PATCH] v1.22.05 --- index.html | 8 ++++---- modules/save-and-load.js | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index c469499a..655eb720 100644 --- a/index.html +++ b/index.html @@ -1753,14 +1753,14 @@ - + - PNG/JPEG size + PNG/JPEG scale - + - + diff --git a/modules/save-and-load.js b/modules/save-and-load.js index d8760d90..25c7b81b 100644 --- a/modules/save-and-load.js +++ b/modules/save-and-load.js @@ -11,7 +11,7 @@ async function saveSVG() { document.body.appendChild(link); link.click(); - tip(`${link.download} is saved. Open "Downloads" screen (crtl + J) to check`, true, "success", 5000); + tip(`${link.download} is saved. Open "Downloads" screen (crtl + J) to check. You can set image scale in options`, true, "success", 5000); console.timeEnd("saveSVG"); } @@ -38,7 +38,7 @@ async function savePNG() { window.setTimeout(function() { canvas.remove(); window.URL.revokeObjectURL(link.href); - tip(`${link.download} is saved. Open "Downloads" screen (crtl + J) to check`, true, "success", 5000); + tip(`${link.download} is saved. Open "Downloads" screen (crtl + J) to check. You can set image scale in options`, true, "success", 5000); }, 1000); }); }