Restore the collectFields
parameter in the Annotation code (issue 17000)
Rather than trying to be "clever" here, and possibly affect code readability negatively, let's just restore the `collectFields` parameter to address the unneeded parsing that now happens when printing new Annotations.
This commit is contained in:
parent
e9f707ce3f
commit
4cedc12341
@ -127,6 +127,7 @@ class AnnotationFactory {
|
||||
ref,
|
||||
annotationGlobals,
|
||||
idFactory,
|
||||
collectFields,
|
||||
pageIndex,
|
||||
pageRef,
|
||||
]);
|
||||
@ -140,6 +141,7 @@ class AnnotationFactory {
|
||||
ref,
|
||||
annotationGlobals,
|
||||
idFactory,
|
||||
collectFields = false,
|
||||
pageIndex = null,
|
||||
pageRef = null
|
||||
) {
|
||||
@ -164,8 +166,9 @@ class AnnotationFactory {
|
||||
subtype,
|
||||
id,
|
||||
annotationGlobals,
|
||||
collectFields,
|
||||
needAppearances:
|
||||
pageIndex === null && acroForm.get("NeedAppearances") === true,
|
||||
!collectFields && acroForm.get("NeedAppearances") === true,
|
||||
pageIndex,
|
||||
evaluatorOptions: pdfManager.evaluatorOptions,
|
||||
pageRef,
|
||||
@ -244,7 +247,7 @@ class AnnotationFactory {
|
||||
return new FileAttachmentAnnotation(parameters);
|
||||
|
||||
default:
|
||||
if (pageIndex === null) {
|
||||
if (!collectFields) {
|
||||
if (!subtype) {
|
||||
warn("Annotation is missing the required /Subtype.");
|
||||
} else {
|
||||
@ -647,7 +650,7 @@ class Annotation {
|
||||
noHTML: isLocked && isContentLocked,
|
||||
};
|
||||
|
||||
if (params.pageIndex !== null) {
|
||||
if (params.collectFields) {
|
||||
// Fields can act as container for other fields and have
|
||||
// some actions even if no Annotation inherit from them.
|
||||
// Those fields can be referenced by CO (calculation order).
|
||||
|
Loading…
Reference in New Issue
Block a user