You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2020/06/19 10:44:23 UTC

[royale-asjs] branch develop updated: jewel-simpleloader: fix RTE when setting indeterminate to false

This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new 4365612  jewel-simpleloader: fix RTE when setting indeterminate to false
4365612 is described below

commit 43656126cc6aa7035baa1fc6fb09a1b677d34db1
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Fri Jun 19 12:44:14 2020 +0200

    jewel-simpleloader: fix RTE when setting indeterminate to false
---
 .../Jewel/src/main/royale/org/apache/royale/jewel/SimpleLoader.as      | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/SimpleLoader.as b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/SimpleLoader.as
index 5a9b2d7..bc4ff4e 100644
--- a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/SimpleLoader.as
+++ b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/SimpleLoader.as
@@ -93,7 +93,8 @@ package org.apache.royale.jewel
 				{
 					COMPILE::JS
 					{
-					animation.pause(); 
+					if(animation)
+						animation.pause(); 
 					}
 				}
 			}