summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSkyler Grey <skyler.grey@collabora.com>2024-03-11 14:38:53 +0000
committerSkyler Grey <skyler.grey@collabora.com>2024-03-15 17:29:04 +0100
commit7fb108a29cff3ad157898350571aa068719761cc (patch)
treeee026abaac9d2c435d5c3cb455cdea9b1940f0ec
parentff637041bd96cd1e4ea0ef78e54b1d89cb627dc3 (diff)
exported SVGs: Stop bullets skipping animation
Previously, we used the incorrect format for bullet point IDs, leading to them not being noticed by animation code, leading to them being skipped during animation. This meant that if you exported an SVG of an impress presentation, and you had a bullet list animating to appear later, you would see the bullets without the text from the start. Change-Id: Ibce764c0843778dd09b108fb251ce606255afb90 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164661 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Reviewed-by: Gökay ŞATIR <gokaysatir@collabora.com> (cherry picked from commit f418738f9881ec183d02e9f3216d192951df52c1) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164870
-rw-r--r--filter/source/svg/presentation_engine.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/source/svg/presentation_engine.js b/filter/source/svg/presentation_engine.js
index 2f653ea486f0..93753988b565 100644
--- a/filter/source/svg/presentation_engine.js
+++ b/filter/source/svg/presentation_engine.js
@@ -15110,7 +15110,7 @@ function AnimatedTextElement( aElement, aEventMultiplexer )
if( aBulletPlaceholderElem )
{
var sId = aBulletPlaceholderElem.getAttribute( 'id' );
- sId = 'bullet-char(' + sId + ')';
+ sId = 'bullet-char-' + sId;
aBulletCharElem = theDocument.getElementById( sId );
if( aBulletCharElem )
{