Update renderElement.ts

This commit is contained in:
zsviczian
2023-04-04 16:17:08 +02:00
committed by GitHub
parent 17f9f64eda
commit f017a60101

View File

@@ -126,6 +126,7 @@ export const cappedElementCanvasSize = (
distance(y1, y2) * window.devicePixelRatio * zoomValue + distance(y1, y2) * window.devicePixelRatio * zoomValue +
padding * zoomValue * 2; padding * zoomValue * 2;
} }
return {width, height, zoomValue};
} else { } else {
let width = let width =
element.width * window.devicePixelRatio * zoomValue + element.width * window.devicePixelRatio * zoomValue +
@@ -144,8 +145,8 @@ export const cappedElementCanvasSize = (
element.height * window.devicePixelRatio * zoomValue + element.height * window.devicePixelRatio * zoomValue +
padding * zoomValue * 2; padding * zoomValue * 2;
} }
}
return {width, height, zoomValue}; return {width, height, zoomValue};
}
} }
const generateElementCanvas = ( const generateElementCanvas = (