diff options
author | Maxim Monastirsky <momonasmon@gmail.com> | 2023-03-26 22:23:52 +0300 |
---|---|---|
committer | Maxim Monastirsky <momonasmon@gmail.com> | 2023-03-30 22:43:23 +0000 |
commit | 685a864cfc40227559ed55f6273fd118174e8e6e (patch) | |
tree | cec7791804d443343c3a7d36252b719b32c3d7dd /svx/source/sdr/properties/attributeproperties.cxx | |
parent | cb3b8b0aaa9d53bd4b4a74d22b87d46e77835206 (diff) |
sc drawstyles: Clipboard support
- Paste as Calc's own format (default in Calc, results with an
OLE object elsewhere), should preserve style assignment. This
can be in one of two ways: Either copy the shape itself, or a
cell range that includes a shape.
- Similarly, copying or moving a whole sheet to another document
should also preserve the style.
- Paste as drawing format (default in other apps, also default
in Calc when copying shapes from other apps), should preserve
the formatting as direct formatting. Pasting into Calc will
also assign the default style to that shape.
Change-Id: Icb951dad1a77ba9ced706c33c928980d1ec7f8ac
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149753
Tested-by: Jenkins
Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com>
Diffstat (limited to 'svx/source/sdr/properties/attributeproperties.cxx')
-rw-r--r-- | svx/source/sdr/properties/attributeproperties.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/sdr/properties/attributeproperties.cxx b/svx/source/sdr/properties/attributeproperties.cxx index 7f141b8f65b7..d4a001795360 100644 --- a/svx/source/sdr/properties/attributeproperties.cxx +++ b/svx/source/sdr/properties/attributeproperties.cxx @@ -195,7 +195,7 @@ namespace sdr::properties pTargetStyleSheet = dynamic_cast< SfxStyleSheet* >( pTargetStyleSheetPool->Find( rProps.GetStyleSheet()->GetName(), - SfxStyleFamily::All)); + rProps.GetStyleSheet()->GetFamily())); } } } |