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

New commits:
commit edacf30340058707e02c3348a255435f4f4481b3
Author:     Skyler Grey <skyler.g...@collabora.com>
AuthorDate: Mon Mar 11 14:38:53 2024 +0000
Commit:     Skyler Grey <skyler.g...@collabora.com>
CommitDate: Tue Mar 19 11:56:46 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 5ee89034692eb21f9a71c9a36cc205b09f24e856)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164871
    Tested-by: Jenkins
    (cherry picked from commit c3327640208fb5117ca88878afd7e716981372c7)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164887
    Reviewed-by: Skyler Grey <skyler.g...@collabora.com>

diff --git a/filter/source/svg/presentation_engine.js 
b/filter/source/svg/presentation_engine.js
index 839bd1676ffd..fa42b89b2f8e 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