refactor(network): add bias to annot.top

This commit is contained in:
Developer 02
2025-04-24 02:23:22 +02:00
parent 4bf91df85f
commit 7c57b7e332
2 changed files with 2 additions and 2 deletions

View File

@@ -219,7 +219,7 @@ async function getAnnotationParams(leftInInch = 0, topInInch = 0, inchToPointFac
annot.height *= inchToPointFactor;
annot.left += leftInInch - 0.7;
annot.left *= inchToPointFactor;
annot.top += topInInch;
annot.top += topInInch - 0.5;
annot.top *= inchToPointFactor;
}
return annotParams;