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 2018/09/25 10:03:09 UTC

[royale-asjs] branch develop updated: textDecoration setter getter added

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 254d718  textDecoration setter getter added
254d718 is described below

commit 254d718a3571ffad0ff87e7fa3e9b9906112aa7e
Author: alinakazi <AL...@GMAIL.COM>
AuthorDate: Tue Sep 25 15:03:05 2018 +0500

    textDecoration setter getter added
---
 .../MXRoyale/src/main/royale/mx/core/ScrollControlBase.as        | 9 +++++++++
 1 file changed, 9 insertions(+)

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 3c795ae..f373615 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/core/ScrollControlBase.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/core/ScrollControlBase.as
@@ -1438,5 +1438,14 @@ public class ScrollControlBase extends UIComponent
 //	{
 //		return horizontalScrollBar;
 //	}
+
+	public function get textDecoration():String
+	{
+		return "none";
+	}
+	public function set textDecoration(value:String):void
+	{
+
+	}
 }
 }