You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by al...@apache.org on 2019/11/08 10:03:56 UTC

[royale-asjs] branch develop updated: accessibility property var implemented

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

alinakazi 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 643d35b  accessibility property var implemented
643d35b is described below

commit 643d35bb81383936a960fa3a56ea9509df2b9aed
Author: alinakazi <AL...@GMAIL.COM>
AuthorDate: Fri Nov 8 02:03:47 2019 -0800

    accessibility property var implemented
---
 .../projects/MXRoyale/src/main/royale/mx/core/UIComponent.as      | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as b/frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as
index 54d1482..d22549a 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as
@@ -973,16 +973,16 @@ public class UIComponent extends UIBase
 	}
     }
     
-    
+    private var _accessibilityEnabled:Boolean = true;
+
     public function get accessibilityEnabled():Boolean
     {
-        trace("accessibilityEnabled not implemented");
-        return false;
+        return _accessibilityEnabled;
     }
     
     public function set accessibilityEnabled(value:Boolean):void
     {
-        trace("accessibilityEnabled not implemented");
+      _accessibilityEnabled = value;
     }
     
     /**