You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ah...@apache.org on 2019/12/06 07:27:06 UTC

[royale-asjs] branch develop updated: fix mustella

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

aharui 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 ca6289b  fix mustella
ca6289b is described below

commit ca6289bbafba17c6d7fdf67e38e550f768efa136
Author: Alex Harui <ah...@apache.org>
AuthorDate: Thu Dec 5 23:26:51 2019 -0800

    fix mustella
---
 frameworks/projects/MXRoyale/src/main/royale/mx/controls/TextInput.as   | 2 +-
 .../projects/MXRoyale/src/main/royale/mx/managers/SystemManager.as      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/TextInput.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/TextInput.as
index 1c94bc3..fc9ef0f 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/TextInput.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/TextInput.as
@@ -1616,7 +1616,7 @@ public class TextInput extends UIComponent implements ITextInput
      *  @playerversion AIR 2.6
      *  @productversion Royale 0.0
 	 */
-	public function textChangeHandler(event:KeyboardEvent):void
+	public function textChangeHandler(event:Event):void
 	{
         if (!inSetter)
         {
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/managers/SystemManager.as b/frameworks/projects/MXRoyale/src/main/royale/mx/managers/SystemManager.as
index 36ad29b..a00c4c5 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/managers/SystemManager.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/managers/SystemManager.as
@@ -2950,7 +2950,7 @@ public class SystemManager extends SystemManagerBase implements ISystemManager,
     {
         var body:HTMLElement = document.getElementsByTagName('body')[0];
         body.appendChild(element);
-        element.className = "Application";  // to pick up box-model
+        element.className = "royale";  // to pick up box-model
         
         SystemManagerGlobals.info = info();