summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorMark Hung <marklh9@gmail.com>2018-07-24 00:54:41 +0800
committerMark Hung <marklh9@gmail.com>2018-07-24 12:10:06 +0200
commit629aeda73b2db4246b837b63fb7bcf267111783c (patch)
treefe799b2502d95d7840ebfede12cdf29c82f8aca3 /sd
parentdcbb65f2a4a3ee70ccd4896d7a5e975dbd9e6509 (diff)
tdf#118890 subtract 100% from by values of animScale.
Despite that by values should be offset values instead of ending values, what we got from pptx seems to be the later, that we have to subtract 100% from the by values to get offset values for slideshow. Change-Id: I7eb9981210ea9998dae0de8f22c155b394e5abeb Reviewed-on: https://gerrit.libreoffice.org/57860 Tested-by: Jenkins Reviewed-by: Mark Hung <marklh9@gmail.com>
Diffstat (limited to 'sd')
-rw-r--r--sd/qa/unit/export-tests.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/qa/unit/export-tests.cxx b/sd/qa/unit/export-tests.cxx
index 1eb9be7404c3..1c494ae33188 100644
--- a/sd/qa/unit/export-tests.cxx
+++ b/sd/qa/unit/export-tests.cxx
@@ -857,7 +857,7 @@ void SdExportTest::testTdf98477()
xDocShRef = saveAndReload(xDocShRef.get(), ODP, &tempFile);
xmlDocPtr pXmlDoc = parseExport(tempFile, "content.xml");
- assertXPath(pXmlDoc, "//anim:animateTransform", "by", "1.5,1.5");
+ assertXPath(pXmlDoc, "//anim:animateTransform", "by", "0.5,0.5");
xDocShRef->DoClose();
}