mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-19 22:58:07 +02:00
Merge pull request #13706 from calixteman/13697
XFA - Keep xfa layer on top of the others (bug 1719629)
This commit is contained in:
commit
90e527968a
1 changed files with 5 additions and 0 deletions
|
@ -496,6 +496,11 @@ class PDFPageView {
|
|||
div.appendChild(textLayerDiv);
|
||||
}
|
||||
|
||||
if (this.xfaLayer?.div) {
|
||||
// The xfa layer needs to stay on top.
|
||||
div.appendChild(this.xfaLayer.div);
|
||||
}
|
||||
|
||||
textLayer = this.textLayerFactory.createTextLayerBuilder(
|
||||
textLayerDiv,
|
||||
this.id - 1,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue