Kaydet (Commit) 12877c3e authored tarafından Armin Le Grand's avatar Armin Le Grand

No GridOffset support for PDF or Print

Change-Id: I40c1128ef2fb8860e883016344138bb84f68c2de
Reviewed-on: https://gerrit.libreoffice.org/64112
Tested-by: Jenkins
Reviewed-by: 's avatarArmin Le Grand <Armin.Le.Grand@cib.de>
üst 6ddc2fb9
......@@ -1181,6 +1181,18 @@ namespace sdr
bool ObjectContactOfScDrawView::supportsGridOffsets() const
{
// no GridOffset support for printer
if(isOutputToPrinter())
{
return false;
}
// no GridOffset support for PDF export
if(isOutputToPDFFile())
{
return false;
}
// yes - we support it
return true;
}
......
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