Browse Source

【PDFView】注释显示问题

dinglingui 2 months ago
parent
commit
eef0663004

+ 1 - 1
PDF Office/PDF Master/Class/PDFWindowController/PDFListView/CPDFKitExtensions/CPDFAnnotationExtensions/SelfSign/CSelfSignAnnotation.m

@@ -63,7 +63,7 @@
         [bezierPath closePath];
     } else if (CAnnotationTypeSignLine == self.annotationType) {
         bezierPath = [NSBezierPath bezierPath];
-        [bezierPath moveToPoint:NSMakePoint(CGRectGetMinX(bounds)-1, CGRectGetMidY(bounds))];
+        [bezierPath moveToPoint:NSMakePoint(CGRectGetMinX(bounds)+1, CGRectGetMidY(bounds))];
         [bezierPath lineToPoint:NSMakePoint(CGRectGetMaxX(bounds)-2, CGRectGetMidY(bounds))];
         [bezierPath closePath];
         [lines addObject:bezierPath];