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 2021/07/28 18:50:02 UTC

[royale-asjs] branch develop updated: Added Missing .png in TextColorSelectableItemRendererBead.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 01e3663  Added Missing .png in TextColorSelectableItemRendererBead.as
01e3663 is described below

commit 01e3663220a09c79b9dd71388f3995ad5aaea86a
Author: pashminakazi <pa...@gmail.com>
AuthorDate: Wed Jul 28 11:49:52 2021 -0700

    Added Missing .png in TextColorSelectableItemRendererBead.as
---
 .../org/apache/royale/html/beads/TextColorSelectableItemRendererBead.as | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/TextColorSelectableItemRendererBead.as b/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/TextColorSelectableItemRendererBead.as
index ae282ee..a35eda9 100644
--- a/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/TextColorSelectableItemRendererBead.as
+++ b/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/TextColorSelectableItemRendererBead.as
@@ -41,7 +41,7 @@ package org.apache.royale.html.beads
 				var element:HTMLElement = (_strand as IUIBase).element;
 				element.style["color"] = selected ? "black" : "black";
 				element.style["background-color"] = selected ? "white" : null;
-				element.style["background-image"] = selected ? 'url("ButtonSelectedImage")' : null;
+				element.style["background-image"] = selected ? 'url("ButtonSelectedImage.png")' : null;
 			}
 		}
 	}