https://issues.apache.org/bugzilla/show_bug.cgi?id=55714
--- Comment #3 from Benjamin Gamard <[email protected]> --- After further debugging, I think I have found where the problem is. in XSLFSlide.importContent (line 228), we have : XSLFBackground bgShape = getBackground(); instead of : XSLFBackground bgShape = src.getBackground(); It seems to import correctly the background in the new pptx, but it's not enough. The <p:bgPr> is not copied (as I said in my previous comment). If I copy it manually like that : newSlide.getXmlObject().getCSld().setBg(srcSlide.getXmlObject().getCSld().getBg()); The background works. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
