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 <[email protected]>
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
     //----------------------------------

Reply via email to