This is an automated email from the ASF dual-hosted git repository.
harbs 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 d487de7589 bubbles makes no sense if it's a string
d487de7589 is described below
commit d487de7589eedda755522c96312b0e2744c5a440
Author: Harbs <[email protected]>
AuthorDate: Thu Feb 19 20:03:21 2026 +0200
bubbles makes no sense if it's a string
---
.../Core/src/main/royale/org/apache/royale/core/ElementWrapper.as | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/frameworks/projects/Core/src/main/royale/org/apache/royale/core/ElementWrapper.as
b/frameworks/projects/Core/src/main/royale/org/apache/royale/core/ElementWrapper.as
index 34269d7e28..ea147707c1 100644
---
a/frameworks/projects/Core/src/main/royale/org/apache/royale/core/ElementWrapper.as
+++
b/frameworks/projects/Core/src/main/royale/org/apache/royale/core/ElementWrapper.as
@@ -362,7 +362,7 @@ package org.apache.royale.core
eventType = e as String;
if (e == "change")
{
- e = EventUtils.createEvent(eventType, e["bubbles"]);
+ e = EventUtils.createEvent(eventType);
}
}
else