fix border drawing
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/1358001a Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/1358001a Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/1358001a Branch: refs/heads/develop Commit: 1358001ada951bba8e2f517570f8b6852453cf45 Parents: aa6d619 Author: Alex Harui <[email protected]> Authored: Wed Oct 29 10:28:22 2014 -0700 Committer: Alex Harui <[email protected]> Committed: Wed Oct 29 11:15:44 2014 -0700 ---------------------------------------------------------------------- .../FlexJSUI/src/org/apache/flex/html/beads/SingleLineBorderBead.as | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1358001a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/beads/SingleLineBorderBead.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/beads/SingleLineBorderBead.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/beads/SingleLineBorderBead.as index 1621cde..ad49401 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/beads/SingleLineBorderBead.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/beads/SingleLineBorderBead.as @@ -65,6 +65,7 @@ package org.apache.flex.html.beads _strand = value; IEventDispatcher(value).addEventListener("heightChanged", changeHandler); IEventDispatcher(value).addEventListener("widthChanged", changeHandler); + IEventDispatcher(value).addEventListener("sizeChanged", changeHandler); } private function changeHandler(event:Event):void
