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

New commits:
commit 5ee89034692eb21f9a71c9a36cc205b09f24e856
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 14:12:19 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>

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