You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by yi...@apache.org on 2020/11/29 10:33:47 UTC

[royale-asjs] branch develop updated: Make sure Progress event propagates bubble param

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

yishayw 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 57848fd  Make sure Progress event propagates bubble param
     new 5e69510  Merge branch 'develop' of https://github.com/apache/royale-asjs into develop
57848fd is described below

commit 57848fd1d188bd2e22016c3ac5e59dfd061ac012
Author: Yishay Weiss <yi...@hotmail.com>
AuthorDate: Sun Nov 29 12:29:42 2020 +0200

    Make sure Progress event propagates bubble param
    
    Reference #959
---
 frameworks/projects/MXRoyale/src/main/royale/mx/events/ProgressEvent.as | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/events/ProgressEvent.as b/frameworks/projects/MXRoyale/src/main/royale/mx/events/ProgressEvent.as
index 7a5b7d3..1b40e3d 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/events/ProgressEvent.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/events/ProgressEvent.as
@@ -42,7 +42,7 @@ package mx.events
 		public function ProgressEvent(type:String, bubbles:Boolean=false, cancelable:Boolean=false, 
 										 current:Number = NaN, total:Number = NaN)
 		{
-    		super(total);
+    		super(total, bubbles);
 		}
 		
       


Re: [royale-asjs] branch develop updated: Make sure Progress event propagates bubble param

Posted by Piotr Zarzycki <pi...@gmail.com>.
What about third param? Does in general cancelable matters?

On Sun, 29 Nov 2020 at 11:33, <yi...@apache.org> wrote:

> This is an automated email from the ASF dual-hosted git repository.
>
> yishayw 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 57848fd  Make sure Progress event propagates bubble param
>      new 5e69510  Merge branch 'develop' of
> https://github.com/apache/royale-asjs into develop
> 57848fd is described below
>
> commit 57848fd1d188bd2e22016c3ac5e59dfd061ac012
> Author: Yishay Weiss <yi...@hotmail.com>
> AuthorDate: Sun Nov 29 12:29:42 2020 +0200
>
>     Make sure Progress event propagates bubble param
>
>     Reference #959
> ---
>  frameworks/projects/MXRoyale/src/main/royale/mx/events/ProgressEvent.as |
> 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git
> a/frameworks/projects/MXRoyale/src/main/royale/mx/events/ProgressEvent.as
> b/frameworks/projects/MXRoyale/src/main/royale/mx/events/ProgressEvent.as
> index 7a5b7d3..1b40e3d 100644
> ---
> a/frameworks/projects/MXRoyale/src/main/royale/mx/events/ProgressEvent.as
> +++
> b/frameworks/projects/MXRoyale/src/main/royale/mx/events/ProgressEvent.as
> @@ -42,7 +42,7 @@ package mx.events
>                 public function ProgressEvent(type:String,
> bubbles:Boolean=false, cancelable:Boolean=false,
>
>        current:Number = NaN, total:Number = NaN)
>                 {
> -               super(total);
> +               super(total, bubbles);
>                 }
>
>
>
> --

Piotr Zarzycki