You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by pu...@apache.org on 2020/09/21 17:51:32 UTC

[royale-asjs] branch develop updated: Update ScrollControlBase.as

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

pushminakazi 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 8243c29  Update ScrollControlBase.as
8243c29 is described below

commit 8243c2996db6ba3d853ee194ae861908bbcf39a3
Author: pashminakazi <42...@users.noreply.github.com>
AuthorDate: Mon Sep 21 22:51:27 2020 +0500

    Update ScrollControlBase.as
---
 .../projects/MXRoyale/src/main/royale/mx/core/ScrollControlBase.as    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/core/ScrollControlBase.as b/frameworks/projects/MXRoyale/src/main/royale/mx/core/ScrollControlBase.as
index ee6e038..cf1522f 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/core/ScrollControlBase.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/core/ScrollControlBase.as
@@ -430,7 +430,7 @@ public class ScrollControlBase extends UIComponent
      *  @private
      *  Storage for the horizontalScrollPolicy property.
      */
-    private var _horizontalScrollPolicy:String = ScrollPolicy.OFF;
+    public var _horizontalScrollPolicy:String = ScrollPolicy.OFF;
 
     [Bindable("horizontalScrollPolicyChanged")]
     [Inspectable(enumeration="off,on,auto", defaultValue="off")]
@@ -783,7 +783,7 @@ public class ScrollControlBase extends UIComponent
      *  @private
      *  Storage for the verticalScrollPolicy property.
      */
-    private var _verticalScrollPolicy:String = ScrollPolicy.AUTO;
+    public var _verticalScrollPolicy:String = ScrollPolicy.AUTO;
 
     [Bindable("verticalScrollPolicyChanged")]
     [Inspectable(enumeration="off,on,auto", defaultValue="auto")]