Kaydet (Commit) 9ad4c483 authored tarafından Miklos Vajna's avatar Miklos Vajna

fdo#48335 don't export zoom factor when zoom type is not percent

Change-Id: I1fb7e3d9d65f2f3388bb4851f5ad517ed1681f04
üst 5d505e5b
......@@ -506,7 +506,7 @@ void RtfExport::ExportDocument_Impl()
Strm() << m_pAttrOutput->m_aTabStop.makeStringAndClear().getStr() << sNewLine;
// Zoom
ViewShell *pViewShell(pDoc->GetCurrentViewShell());
if (pViewShell)
if (pViewShell && pViewShell->GetViewOptions()->GetZoomType() == SVX_ZOOM_PERCENT)
{
Strm() << OOO_STRING_SVTOOLS_RTF_VIEWSCALE;
OutULong(pViewShell->GetViewOptions()->GetZoom());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment