fix: Set scaled steps to be at 64 to be in sync with the rest of the canvas

This commit is contained in:
blessedcoolant 2023-09-05 22:59:37 +12:00
parent 86185f2fe3
commit 9caa2a2043
2 changed files with 4 additions and 4 deletions

View File

@ -41,7 +41,7 @@ const ParamScaledHeight = () => {
const newHeight = Math.floor(v);
if (aspectRatio) {
newWidth = roundToMultiple(newHeight * aspectRatio, 8);
newWidth = roundToMultiple(newHeight * aspectRatio, 64);
}
dispatch(
@ -57,7 +57,7 @@ const ParamScaledHeight = () => {
const resetHeight = Math.floor(initial);
if (aspectRatio) {
resetWidth = roundToMultiple(resetHeight * aspectRatio, 8);
resetWidth = roundToMultiple(resetHeight * aspectRatio, 64);
}
dispatch(

View File

@ -41,7 +41,7 @@ const ParamScaledWidth = () => {
let newHeight = scaledBoundingBoxDimensions.height;
if (aspectRatio) {
newHeight = roundToMultiple(newWidth / aspectRatio, 8);
newHeight = roundToMultiple(newWidth / aspectRatio, 64);
}
dispatch(
@ -57,7 +57,7 @@ const ParamScaledWidth = () => {
let resetHeight = scaledBoundingBoxDimensions.height;
if (aspectRatio) {
resetHeight = roundToMultiple(resetWidth / aspectRatio, 8);
resetHeight = roundToMultiple(resetWidth / aspectRatio, 64);
}
dispatch(