fx(network): add bias to left position

This commit is contained in:
Developer 02
2025-04-24 02:11:12 +02:00
parent 50796b22d9
commit 4bf91df85f
2 changed files with 2 additions and 2 deletions

View File

@@ -217,7 +217,7 @@ async function getAnnotationParams(leftInInch = 0, topInInch = 0, inchToPointFac
var annot = annotParams[key];
annot.width *= inchToPointFactor;
annot.height *= inchToPointFactor;
annot.left += leftInInch;
annot.left += leftInInch - 0.7;
annot.left *= inchToPointFactor;
annot.top += topInInch;
annot.top *= inchToPointFactor;