We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abc0350 commit 65842fdCopy full SHA for 65842fd
1 file changed
src/addons/addons/paint-tool-panel/userscript.js
@@ -382,7 +382,7 @@ export default async function () {
382
const currentScale = item.getBounds()[isX ? "width" : "height"];
383
384
// determine the delta needed to move the currentScale to value
385
- value = value / currentScale;
+ value = (value * 2) / currentScale;
386
if (!value) value = epsilon;
387
388
if (isX) {
0 commit comments