Description: Place holder drawing text frames present after deletion textframe + image of exported DOC (not showing up in navigator) Steps to Reproduce: 1. Open attachment 155681 [details] 2. Save as DOC 3. File reload 4. Delete image with frame 3 and 2.. Click around.. you hit an empty frame in the same area Actual Results: Empty text frame Expected Results: Nothing Reproducible: Always User Profile Reset: No Additional Info: Version: 7.2.0.0.alpha0+ (x64) Build ID: f2171af6ce3516598d9f8bac8294025a21a5b1a2 CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win Locale: nl-NL (nl_NL); UI: en-US Calc: CL
I don't think this being present in 4.2.. but import kind of flaky.. 4.3.7.2 does crash at deletion of the frames
I confirm it with Version: 7.2.0.0.alpha0+ (x64) / LibreOffice Community Build ID: 1675a68526c43c6c6e4dc850ee911f0c1de75c88 CPU threads: 4; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win Locale: de-DE (de_DE); UI: en-GB Calc: CL Regarding to the navigator we have Drawng objects in odt-file that becomes frames in doc-file (do't know if this is relevant
Dear Telesto, To make sure we're focusing on the bugs that affect our users today, LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed bugs which have not been touched for over a year. There have been thousands of bug fixes and commits since anyone checked on this bug report. During that time, it's possible that the bug has been fixed, or the details of the problem have changed. We'd really appreciate your help in getting confirmation that the bug is still present. If you have time, please do the following: Test to see if the bug is still present with the latest version of LibreOffice from https://www.libreoffice.org/download/ If the bug is present, please leave a comment that includes the information from Help - About LibreOffice. If the bug is NOT present, please set the bug's Status field to RESOLVED-WORKSFORME and leave a comment that includes the information from Help - About LibreOffice. Please DO NOT Update the version field Reply via email (please reply directly on the bug tracker) Set the bug's Status field to RESOLVED - FIXED (this status has a particular meaning that is not appropriate in this case) If you want to do more to help you can test to see if your issue is a REGRESSION. To do so: 1. Download and install oldest version of LibreOffice (usually 3.3 unless your bug pertains to a feature added after 3.3) from https://downloadarchive.documentfoundation.org/libreoffice/old/ 2. Test your bug 3. Leave a comment with your results. 4a. If the bug was present with 3.3 - set version to 'inherited from OOo'; 4b. If the bug was not present in 3.3 - add 'regression' to keyword Feel free to come ask questions or to say hello in our QA chat: https://web.libera.chat/?settings=#libreoffice-qa Thank you for helping us make LibreOffice even better for everyone! Warm Regards, QA Team MassPing-UntouchedBug
Still present Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community Build ID: 066b23115c2a360507e306a88da572554daefab7 CPU threads: 8; OS: Mac OS X 12.6.3; UI render: Skia/Raster; VCL: osx Locale: nl-NL (nl_NL.UTF-8); UI: en-US Calc: threaded
Bibisected with Linux 44max repo to d379d18666aa42031359ca8eb34b0021960347ae oox: import WPS shape with text as shape with textbox There were intermediate states where the .doc did not contain frames or the program failed to launch. I marked as bad a state where frame 3 did not exist in the .doc and deletion of frame 2 left behind the ghost object. This is the first bad commit. Grepping in the .xmls of the docx I see stuff like <wps:wsp><wps:cNvSpPr txBox="1"/> CLI conversion helped with the bibisect: opt/program/soffice --headless --convert-to doc --outdir /path/to/dir /path/to/dir/export-test.docx && SAL_USE_VCLPLUGIN=gen opt/program/soffice --norestore /path/to/dir/export-test.doc
I guess what happens here is that the original DOCX file has this shape that happens to be a rectangle (but could be something more complex, like have rounded rectangles) and that contains some text (caption) and the image. So on import we deal with a shape and an image, but the shape gets mapped to a Writer TextBox (draw shape + inner Writer TextFrame), on purpose. Once you save to DOC, the link between the draw shape and the inner TextFrame gets lost, as the DOC export was not extended to use SwTextBoxHelper::isTextBox(). This is doable and is done for DOCX & RTF, but I don't recall the details off the top of my head, most of that Writer TextBox work was 10 years ago. :-) So this makes sense to implement, but I would argue that this is a missing feature of the DOC export (and then people will also want the same in the DOC import), or at least it's an implementation error, not a regression. Adjusting keywords accordingly.
Forgot to mention: you can find more info about the Writer TextBox feature here: https://vmiklos.hu/blog/textbox.html