diff options
author | Balazs Varga <balazs.varga991@gmail.com> | 2020-06-19 11:07:04 +0200 |
---|---|---|
committer | László Németh <nemeth@numbertext.org> | 2020-07-15 16:36:23 +0200 |
commit | 6d1e9482cf1519e5b4d73331a5bcdfbbc9a15776 (patch) | |
tree | 832739447227bf71b769dca860f847af9b4a1ab9 /oox | |
parent | 16a7f59b448cb57bfbcf5a951dbb614fb2ea3a49 (diff) |
tdf#134111 Chart OOXML Import: set text break to true
of category axis labels, even if the XML do not contain
Text Properties of category axis labels.
Change-Id: Ia0b154b2dfbfb00ffa0762af771423196586a5ae
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96683
Tested-by: Jenkins
Tested-by: László Németh <nemeth@numbertext.org>
Reviewed-by: László Németh <nemeth@numbertext.org>
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/drawingml/chart/objectformatter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/drawingml/chart/objectformatter.cxx b/oox/source/drawingml/chart/objectformatter.cxx index 7e4073686065..c0669678eee0 100644 --- a/oox/source/drawingml/chart/objectformatter.cxx +++ b/oox/source/drawingml/chart/objectformatter.cxx @@ -1155,7 +1155,7 @@ bool ObjectFormatter::getTextRotation( const ModelRef< TextBody >& rxTextProp, s } else { - return false; + return true; } } |