We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8905f33 commit 5bef955Copy full SHA for 5bef955
1 file changed
js/ResolutionMaster.js
@@ -1837,8 +1837,10 @@ class ResolutionMasterCanvas {
1837
newX = Math.round(rnX * newX) / rnX;
1838
newY = Math.round(rnY * newY) / rnY;
1839
1840
- this.setDimensions(newX, newY);
1841
- app.graph.setDirtyCanvas(true);
+ // Only update if values changed
+ if (props.valueX !== newX || props.valueY !== newY) {
1842
+ this.setDimensions(newX, newY);
1843
+ }
1844
}
1845
1846
updateCanvasValueWidth(x, w, ctrlKey) {
0 commit comments