diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2019-10-10 21:29:50 +0200 |
---|---|---|
committer | Tamás Zolnai <tamas.zolnai@collabora.com> | 2019-10-12 12:24:25 +0200 |
commit | 57cfbc6830c3d8dc64107aed4a5555613415f069 (patch) | |
tree | 16c556be5b715aa9e2b370e25d34a77f9fbf314e /oox | |
parent | f62590b6bace50f61cf3a43823a57180ba8a6ce4 (diff) |
tdf#127129: pptx: map highlight to CharBackColor
Change-Id: I033c15db6848e96ba6b6bd7a2852c9e4d1524a8e
Reviewed-on: https://gerrit.libreoffice.org/80630
Tested-by: Jenkins
Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com>
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/drawingml/textcharacterproperties.cxx | 3 | ||||
-rw-r--r-- | oox/source/token/properties.txt | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/oox/source/drawingml/textcharacterproperties.cxx b/oox/source/drawingml/textcharacterproperties.cxx index 703e23db9c3f..e2f5cc63c0a2 100644 --- a/oox/source/drawingml/textcharacterproperties.cxx +++ b/oox/source/drawingml/textcharacterproperties.cxx @@ -167,6 +167,9 @@ void TextCharacterProperties::pushToPropMap( PropertyMap& rPropMap, const XmlFil rPropMap.setProperty( PROP_CharUnderlineColor, maUnderlineColor.getColor( rFilter.getGraphicHelper() )); } // TODO If bUnderlineFillFollowText uFillTx (CT_TextUnderlineFillFollowText) is set, fill color of the underline should be the same color as the text + + if( maHighlightColor.isUsed() ) + rPropMap.setProperty( PROP_CharBackColor, maHighlightColor.getColor( rFilter.getGraphicHelper() )); } static void pushToGrabBag( PropertySet& rPropSet, const std::vector<PropertyValue>& aVectorOfProperyValues ) diff --git a/oox/source/token/properties.txt b/oox/source/token/properties.txt index 15db0c2b193e..a9e031a1ce7c 100644 --- a/oox/source/token/properties.txt +++ b/oox/source/token/properties.txt @@ -50,6 +50,7 @@ CellStyle CenterHorizontally CenterVertically Change +CharBackColor CharCaseMap CharColor CharContoured |