Bug 155019 - Strikethroughs don't copy from Calc to Writer
Summary: Strikethroughs don't copy from Calc to Writer
Status: NEW
Alias: None
Product: LibreOffice
Classification: Unclassified
Component: Calc (show other bugs)
Version:
(earliest affected)
Inherited From OOo
Hardware: All All
: medium normal
Assignee: Not Assigned
URL:
Whiteboard:
Keywords:
Depends on:
Blocks: Cut-Copy
  Show dependency treegraph
 
Reported: 2023-04-25 19:26 UTC by Richard
Modified: 2023-04-26 04:22 UTC (History)
1 user (show)

See Also:
Crash report or crash signature:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Richard 2023-04-25 19:26:37 UTC
Description:
I created a spreadsheet that included several text entries formatted with strikethroughs.  I copied the spreadsheet entries to the clipboard and used Paste to add the entries to a Writer document.  The text copied correctly but without strikethroughs.  After posting my problem, a user passed along a solution:  Use Paste Special and choose HTML.  I am a very new user of LO and it was suggested by the poster of the solution that this was a bug that should be reported.

Steps to Reproduce:
1.Copy text with strikethroughs to clipboard in Calc.
2.Paste clipboard into Writer.
3.

Actual Results:
Text appears in Writer but strikethroughs are lost.

Expected Results:
Strikethroughs should be maintained between components.


Reproducible: Always


User Profile Reset: No

Additional Info:
Version: 7.4.6.2 (x64) / LibreOffice Community
Build ID: 5b1f5509c2decdade7fda905e3e1429a67acd63d
CPU threads: 20; OS: Windows 10.0 Build 22621; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL
Comment 1 Eike Rathke 2023-04-25 20:33:49 UTC
Clarification: this when copying more than one entire cells; copying strikethrough-attributed content from within cells and a single cell and pasting to Writer (without cell border) works.

Cells are pasted using the clipboard's RTF (Rich Text Format) text/rtf target.
For two cells with the first having content CellContent and strikethrough that results in (xclip -selection clipboard -o -target text/rtf)

{\rtf\ansi
{
\trowd\trgaph30\trleft-30\trrh256\clvertalb\cellx1280\clvertalb\cellx2560\pard\plain\intbl
\ql CellContent\cell\ql \cell\row
}
}

Using bold text attribute that is copied along:

{\rtf\ansi
{
\trowd\trgaph30\trleft-30\trrh256\clvertalb\cellx1280\clvertalb\cellx2560\pard\plain\intbl
\ql\b CellContent\cell\plain\ql \cell\row
}
}