summaryrefslogtreecommitdiff
path: root/print/resources/inkstitch.js
diff options
context:
space:
mode:
Diffstat (limited to 'print/resources/inkstitch.js')
-rw-r--r--print/resources/inkstitch.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/print/resources/inkstitch.js b/print/resources/inkstitch.js
index 0571f432..8c5e8fa6 100644
--- a/print/resources/inkstitch.js
+++ b/print/resources/inkstitch.js
@@ -33,8 +33,6 @@ function scaleSVG(element, scale = 'fit') {
element.width() / element.find('svg').width(),
element.height() / element.find('svg').height()
);
- // Do not scale to more than 100%
- scale = (scale <= 1) ? scale : 1;
}
transform += " scale(" + scale + ")";