diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2019-01-18 15:48:57 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2019-01-18 20:43:00 +0100 |
commit | 1791e08e9f27453ac5563ef400c715e30c791133 (patch) | |
tree | dbfd9aea494667ee8d95dc1f2c24c2da5f46f02e /sd | |
parent | 102f42fa6398fa7e6bf8e9bcfa4c28c22473cd26 (diff) |
oox smartart, org chart: fix shape type of connectors
PowerPoint renders these as bent connectors, not as arrow shapes.
Also add a bit of vertical spacing between the nodes, otherwise the
connectors have no way to be visible. Their position is still incorrect,
though.
Change-Id: I995930c0bbc1bdb1014face2490be392571548a2
Reviewed-on: https://gerrit.libreoffice.org/66627
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'sd')
-rw-r--r-- | sd/qa/unit/import-tests-smartart.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sd/qa/unit/import-tests-smartart.cxx b/sd/qa/unit/import-tests-smartart.cxx index 34b9ea439544..ee25c47fbd8e 100644 --- a/sd/qa/unit/import-tests-smartart.cxx +++ b/sd/qa/unit/import-tests-smartart.cxx @@ -796,6 +796,10 @@ void SdImportTestSmartArt::testOrgChart() // manager2 has no assistants / employees. CPPUNIT_ASSERT_GREATER(aManagerSize.Width, aEmployeeSize.Width + aEmployee2Size.Width); + // Without the accompanying fix in place, this test would have failed: an + // employee was exactly the third of the total height, without any spacing. + CPPUNIT_ASSERT_LESS(xGroup->getSize().Height / 3, aEmployeeSize.Height); + xDocShRef->DoClose(); } |