diff --git a/toolkit/components/pdfjs/content/build/pdf.worker.js b/toolkit/components/pdfjs/content/build/pdf.worker.js index f667ca5995d73..62211a4c01a4b 100644 --- a/toolkit/components/pdfjs/content/build/pdf.worker.js +++ b/toolkit/components/pdfjs/content/build/pdf.worker.js @@ -20474,6 +20474,12 @@ class ButtonWidgetAnnotation extends WidgetAnnotation { this.data.exportValue = exportValues[0] === "Off" ? exportValues[1] : exportValues[0]; this.checkedAppearance = normalAppearance.get(this.data.exportValue); this.uncheckedAppearance = normalAppearance.get("Off") || null; + + this._streams.push(this.checkedAppearance); + + if (this.uncheckedAppearance) { + this._streams.push(this.uncheckedAppearance); + } } _processRadioButton(params) { @@ -20510,6 +20516,12 @@ class ButtonWidgetAnnotation extends WidgetAnnotation { this.checkedAppearance = normalAppearance.get(this.data.buttonValue); this.uncheckedAppearance = normalAppearance.get("Off") || null; + + this._streams.push(this.checkedAppearance); + + if (this.uncheckedAppearance) { + this._streams.push(this.uncheckedAppearance); + } } _processPushButton(params) {