From commits-return-5463-archive-asf-public=cust-asf.ponee.io@royale.apache.org Tue Sep 4 12:58:39 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id BFB89180629 for ; Tue, 4 Sep 2018 12:58:38 +0200 (CEST) Received: (qmail 44353 invoked by uid 500); 4 Sep 2018 10:58:37 -0000 Mailing-List: contact commits-help@royale.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@royale.apache.org Delivered-To: mailing list commits@royale.apache.org Received: (qmail 44339 invoked by uid 99); 4 Sep 2018 10:58:37 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Sep 2018 10:58:37 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 62E1C85107; Tue, 4 Sep 2018 10:58:37 +0000 (UTC) Date: Tue, 04 Sep 2018 10:58:37 +0000 To: "commits@royale.apache.org" Subject: [royale-asjs] branch feature/new_merge updated: Fix color matrix. RGBA values were mismatched MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <153605871734.19632.17767044667786615892@gitbox.apache.org> From: harbs@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: royale-asjs X-Git-Refname: refs/heads/feature/new_merge X-Git-Reftype: branch X-Git-Oldrev: b9f9eb0cba95979af3e3e072001df687f41c63cc X-Git-Newrev: 062d059dc49dc7a1f57f5b6eb8c6efa474a64e34 X-Git-Rev: 062d059dc49dc7a1f57f5b6eb8c6efa474a64e34 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. harbs pushed a commit to branch feature/new_merge in repository https://gitbox.apache.org/repos/asf/royale-asjs.git The following commit(s) were added to refs/heads/feature/new_merge by this push: new 062d059 Fix color matrix. RGBA values were mismatched 062d059 is described below commit 062d059dc49dc7a1f57f5b6eb8c6efa474a64e34 Author: DESKTOP-RH4S838\Yishay AuthorDate: Tue Sep 4 12:18:26 2018 +0300 Fix color matrix. RGBA values were mismatched --- .../src/main/royale/org/apache/royale/svg/ColorMatrixFilterElement.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frameworks/projects/Graphics/src/main/royale/org/apache/royale/svg/ColorMatrixFilterElement.as b/frameworks/projects/Graphics/src/main/royale/org/apache/royale/svg/ColorMatrixFilterElement.as index 8e3a1f1..6f2c55f 100644 --- a/frameworks/projects/Graphics/src/main/royale/org/apache/royale/svg/ColorMatrixFilterElement.as +++ b/frameworks/projects/Graphics/src/main/royale/org/apache/royale/svg/ColorMatrixFilterElement.as @@ -54,7 +54,7 @@ package org.apache.royale.svg COMPILE::JS { super.build(); - var matrixValues:String = "0 0 0 0 " + red + " 0 0 0 0 " + green + " 0 0 0 0 " + blue + " 0 0 0 " + opacity + " 0"; + var matrixValues:String = red + " 0 0 0 0 0 " + green + " 0 0 0 0 0 " + blue + " 0 0 0 0 0 " + opacity + " 0"; filterElement.setAttribute("values", matrixValues); } }