filter/source/svg/presentation_engine.js |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7fb108a29cff3ad157898350571aa068719761cc
Author:     Skyler Grey <skyler.g...@collabora.com>
AuthorDate: Mon Mar 11 14:38:53 2024 +0000
Commit:     Skyler Grey <skyler.g...@collabora.com>
CommitDate: Fri Mar 15 17:29:04 2024 +0100

    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 <jenkinscollaboraoff...@gmail.com>
    Reviewed-by: Gökay ŞATIR <gokaysa...@collabora.com>
    (cherry picked from commit f418738f9881ec183d02e9f3216d192951df52c1)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164870

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 )
                 {

Reply via email to