From 331401ea8609774424e73c167e63cfcbf082220f Mon Sep 17 00:00:00 2001 From: Daria Date: Thu, 28 Aug 2025 18:02:53 +0300 Subject: [PATCH] Fix bug 45529 --- RtfFile/Format/RtfField.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/RtfFile/Format/RtfField.cpp b/RtfFile/Format/RtfField.cpp index b3f31c569d..91957d461d 100644 --- a/RtfFile/Format/RtfField.cpp +++ b/RtfFile/Format/RtfField.cpp @@ -476,7 +476,11 @@ std::wstring RtfField::RenderToOOX(RenderParameter oRenderParameter) } //заканчиваем Field - sResult += L""; + sResult += L""; + if (!props.empty()) + sResult += props; + sResult += L""; + //sResult += L""; } if (bDelete) sResult += L""; if (bInsert) sResult += L"";