@@ -462,7 +651,15 @@ script type="text/javascript" src="locale/locale.min.js">
-
+
+
+
diff --git a/editor/svgcanvas.js b/editor/svgcanvas.js
index b69fd46f..a5cd1fdb 100644
--- a/editor/svgcanvas.js
+++ b/editor/svgcanvas.js
@@ -4964,8 +4964,8 @@ function BatchCommand(text) {
// if undoable is not sent, default to true
// if single values, scale them to the zoom
if (dx.constructor != Array) {
- dx *= current_zoom;
- dy *= current_zoom;
+ dx /= current_zoom;
+ dy /= current_zoom;
}
var undoable = undoable || true;
var batchCmd = new BatchCommand("position");