diff --git a/sw/source/filter/ww8/rtfexport.cxx b/sw/source/filter/ww8/rtfexport.cxx index 9d9cc373bd34..d5a90ade29e0 100644 --- a/sw/source/filter/ww8/rtfexport.cxx +++ b/sw/source/filter/ww8/rtfexport.cxx @@ -35,6 +35,8 @@ #include #include +#include +#include #include #include #include @@ -504,6 +506,13 @@ void RtfExport::ExportDocument_Impl() WriteInfo(); // Default TabSize Strm() << m_pAttrOutput->m_aTabStop.makeStringAndClear().getStr() << sNewLine; + // Zoom + ViewShell *pViewShell(pDoc->GetCurrentViewShell()); + if (pViewShell) + { + Strm() << OOO_STRING_SVTOOLS_RTF_VIEWSCALE; + OutULong(pViewShell->GetViewOptions()->GetZoom()); + } // Page description WritePageDescTable();