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

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

commit 6ae6b8a83da5d44cfab7942ac51e293d81426e29
Author: Alex Harui <aha...@apache.org>
AuthorDate: Thu Apr 12 15:49:40 2018 -0700

    handle strandChildren in Royale containers
---
 mustella/src/main/royale/UnitTester.as | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/mustella/src/main/royale/UnitTester.as 
b/mustella/src/main/royale/UnitTester.as
index 2df012a..1bdbd84 100644
--- a/mustella/src/main/royale/UnitTester.as
+++ b/mustella/src/main/royale/UnitTester.as
@@ -1134,6 +1134,15 @@ public class UnitTester extends EventDispatcher
                                                
_getObjectsUnderPoint(rc.getChildAt(i), pt, arr);
                                        }
                                }
+                else if ("strandChildren" in doc)
+                {
+                    var sc:Object = doc["strandChildren"];
+                    n = sc.numElements;
+                    for (i = 0; i < n; i++)
+                    {
+                        _getObjectsUnderPoint(sc.getElementAt(i), pt, arr);
+                    }
+                }
                                else
                                {
                                        if (doc.numChildren)

-- 
To stop receiving notification emails like this one, please contact
aha...@apache.org.

Reply via email to