Skip to content

Commit 65842fd

Browse files
authored
fix math maybe part 2
1 parent abc0350 commit 65842fd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/addons/addons/paint-tool-panel/userscript.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ export default async function () {
382382
const currentScale = item.getBounds()[isX ? "width" : "height"];
383383

384384
// determine the delta needed to move the currentScale to value
385-
value = value / currentScale;
385+
value = (value * 2) / currentScale;
386386
if (!value) value = epsilon;
387387

388388
if (isX) {

0 commit comments

Comments
 (0)