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 8491c26873 MX Resize - fix constructor to take correct target
8491c26873 is described below

commit 8491c26873f4bc3ba5edf1495712fdd7b3440134
Author: yweiss <[email protected]>
AuthorDate: Sat Jun 25 23:44:03 2022 -0700

    MX Resize - fix constructor to take correct target
---
 frameworks/projects/MXRoyale/src/main/royale/mx/effects/Resize.as | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/effects/Resize.as 
b/frameworks/projects/MXRoyale/src/main/royale/mx/effects/Resize.as
index 45ad11012c..b2e0f466cd 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/effects/Resize.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/effects/Resize.as
@@ -52,7 +52,7 @@ public class Resize extends org.apache.royale.effects.Resize
      */
     public function Resize(target:IUIBase = null)
     {
-        super(IUIBase);
+        super(target);
 
                
     }

Reply via email to