mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-22 16:18:08 +02:00
XFA - Keep xfa layer on top of the others (bug 1719629)
This commit is contained in:
parent
0afc785c7d
commit
1b77888400
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