FlatSpark: Fixes an error when applying chromeColor, FLEX-34696 Removes 'border_disabled' from exclusions components
Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/a5f0d905 Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/a5f0d905 Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/a5f0d905 Branch: refs/heads/master Commit: a5f0d905745c4e5fc3bd78b65a86285ae6950850 Parents: 60488ec Author: Mahmoud Ali <[email protected]> Authored: Wed Jan 7 05:57:48 2015 -0300 Committer: Erik de Bruin <[email protected]> Committed: Wed Jan 7 11:33:31 2015 +0100 ---------------------------------------------------------------------- .../projects/flatspark/src/flatspark/skins/TextInputSkin.mxml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/a5f0d905/frameworks/projects/flatspark/src/flatspark/skins/TextInputSkin.mxml ---------------------------------------------------------------------- diff --git a/frameworks/projects/flatspark/src/flatspark/skins/TextInputSkin.mxml b/frameworks/projects/flatspark/src/flatspark/skins/TextInputSkin.mxml index 54f71f0..caf35d7 100644 --- a/frameworks/projects/flatspark/src/flatspark/skins/TextInputSkin.mxml +++ b/frameworks/projects/flatspark/src/flatspark/skins/TextInputSkin.mxml @@ -66,7 +66,7 @@ limitations under the License. private var paddingChanged:Boolean; /* Define the skin elements that should not be colorized. */ - static private const exclusions:Array = ["background", "background_disabled", "textDisplay", "promptDisplay", "border", "border_disabled"]; + static private const exclusions:Array = ["background", "background_disabled", "textDisplay", "promptDisplay", "border"]; /* exclusions before Flex 4.5 for backwards-compatibility purposes */ static private const exclusions_4_0:Array = ["background", "background_disabled", "textDisplay", "promptDisplay"];
