1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-22 16:18:08 +02:00

Merge pull request #17781 from calixteman/stamp_altext_button_cp

[Editor] Make sure the alt-text button is there when pasting an image from an other tab
This commit is contained in:
calixteman 2024-03-07 21:44:53 +01:00 committed by GitHub
commit fb9e438442
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 37 additions and 1 deletions

View file

@ -265,6 +265,8 @@ class StampEditor extends AnnotationEditor {
super.render();
this.div.hidden = true;
this.addAltTextButton();
if (this.#bitmap) {
this.#createCanvas();
} else {
@ -329,7 +331,6 @@ class StampEditor extends AnnotationEditor {
this._reportTelemetry({
action: "inserted_image",
});
this.addAltTextButton();
if (this.#bitmapFileName) {
canvas.setAttribute("aria-label", this.#bitmapFileName);
}