We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Please specify what version of the library you are using: [ v3.6.0 ]
Please specify what version(s) of PowerPoint you are targeting: [ ]
When we add "path" to the background property of a slide master, it should add the image at the path as background.
pptx.defineSlideMaster({ title: "mytitle", background: { fill: theme.background1, path: "../bg-image.jpeg" }, ...
Above worked till v3.5.0. But when we upgraded to v3.6.0 it's broken. It triggers repair PPT dialog and does not even add the image.
The text was updated successfully, but these errors were encountered:
Thanks @viral-sh
The recent changes to the background prop allowed for more than one <p:bg> tag to be created in the slideLayoutN.xml files, which caused the warning.
background
<p:bg>
slideLayoutN.xml
The API now supports more than 1 background prop correctly.
Sorry, something went wrong.
Fix for multiple <p:bg> (Issue #968)
8f38088
Added Issue #968
44bc96c
gitbrent
No branches or pull requests
Category
Version
Please specify what version of the library you are using: [ v3.6.0 ]
Please specify what version(s) of PowerPoint you are targeting: [ ]
Expected / Desired Behavior / Question
When we add "path" to the background property of a slide master, it should add the image at the path as background.
Observed Behavior
Above worked till v3.5.0. But when we upgraded to v3.6.0 it's broken. It triggers repair PPT dialog and does not even add the image.
Steps to Reproduce
The text was updated successfully, but these errors were encountered: