sw/source/filter/ww8/docxtablestyleexport.cxx | 1 + 1 file changed, 1 insertion(+)
New commits: commit d4574c029e40e2edbc6670b72a582410ac21ae90 Author: Saburo Yoshida <[email protected]> AuthorDate: Sun Mar 8 14:06:41 2026 +0900 Commit: Xisco Fauli <[email protected]> CommitDate: Fri Mar 13 11:51:07 2026 +0100 tdf#167506 docxtablestyleexport: add themeShade Table styles lose their themeShade after roundtrip, so MS Word applies the themeColor background1 style, which makes the lines invisible. Change-Id: I8a3d1ce72fdf2c32c19004e6306e8401b3f62bee Reviewed-on: https://gerrit.libreoffice.org/c/core/+/201202 Tested-by: Jenkins Reviewed-by: Xisco Fauli <[email protected]> diff --git a/sw/source/filter/ww8/docxtablestyleexport.cxx b/sw/source/filter/ww8/docxtablestyleexport.cxx index b1dd48005fdd..0643432d2f8b 100644 --- a/sw/source/filter/ww8/docxtablestyleexport.cxx +++ b/sw/source/filter/ww8/docxtablestyleexport.cxx @@ -189,6 +189,7 @@ void DocxTableStyleExport::Impl::tableStyleTcBorder( { "space", XML_space }, { "themeColor", XML_themeColor }, { "themeTint", XML_themeTint }, + { "themeShade", XML_themeShade }, { nullptr, 0 } }; if (!rTcBorder.hasElements())
