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 2021/03/18 08:26:48 UTC

[royale-asjs] branch develop updated: blendMode property added in spark line

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 8b96d0d  blendMode property added in spark line
8b96d0d is described below

commit 8b96d0d0bb1ab1808ebc54ee8c57aef47c430688
Author: alinakazi <al...@gmail.com>
AuthorDate: Thu Mar 18 13:26:36 2021 +0500

    blendMode property added in spark line
---
 .../SparkRoyale/src/main/royale/spark/primitives/Line.as     | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/frameworks/projects/SparkRoyale/src/main/royale/spark/primitives/Line.as b/frameworks/projects/SparkRoyale/src/main/royale/spark/primitives/Line.as
index 61a8387..692ec27 100644
--- a/frameworks/projects/SparkRoyale/src/main/royale/spark/primitives/Line.as
+++ b/frameworks/projects/SparkRoyale/src/main/royale/spark/primitives/Line.as
@@ -82,7 +82,17 @@ public class Line extends UIComponent
     //  Properties
     //
     //--------------------------------------------------------------------------
-    
+    COMPILE::JS{
+	private var _blendMode:String = "auto";
+	public function get blendMode():String
+	{
+		return _blendMode;
+	}
+    public function set blendMode(value:String):void
+	{
+		_blendMode = value;
+	}
+	}
     //----------------------------------
     //  xFrom
     //----------------------------------