diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2019-08-14 23:01:07 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2019-08-15 08:37:35 +0200 |
commit | be92468ae3595d4384510a9cc0e15629c7cb0692 (patch) | |
tree | 5d2df0e048879fb61d09cf0672b6a166fbe364d6 /sw/source | |
parent | 1c59fed7c43654736775580799f1165e8b8740a0 (diff) |
sw btlr writing mode: RTF filter of Writer textframes
Both import and export needed fixing.
Change-Id: Ie1728c3e67d8637e3720748d7f61a69c058eafe3
Reviewed-on: https://gerrit.libreoffice.org/77474
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/filter/ww8/rtfattributeoutput.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sw/source/filter/ww8/rtfattributeoutput.cxx b/sw/source/filter/ww8/rtfattributeoutput.cxx index 81875b744fb1..85b775ad5bb1 100644 --- a/sw/source/filter/ww8/rtfattributeoutput.cxx +++ b/sw/source/filter/ww8/rtfattributeoutput.cxx @@ -3531,6 +3531,11 @@ void RtfAttributeOutput::FormatFrameDirection(const SvxFrameDirectionItem& rDire // Top to bottom non-ASCII font m_aFlyProperties.push_back(std::make_pair<OString, OString>("txflTextFlow", "3")); } + else if (rDirection.GetValue() == SvxFrameDirection::Vertical_LR_BT) + { + // Bottom to top non-ASCII font + m_aFlyProperties.push_back(std::make_pair<OString, OString>("txflTextFlow", "2")); + } return; } |