You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ca...@apache.org on 2016/11/10 09:23:59 UTC

[52/53] git commit: [flex-asjs] [refs/heads/feature/mdl] - FLEX-35144 fix panel. Also requires flex-falcon d889f1182104be4f69b3564c6feeb4ffacf5e213

FLEX-35144 fix panel.  Also requires flex-falcon d889f1182104be4f69b3564c6feeb4ffacf5e213


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/a7d484d3
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/a7d484d3
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/a7d484d3

Branch: refs/heads/feature/mdl
Commit: a7d484d373620fcb3fcdc88aa833bf2329dd37c5
Parents: 8af90ac
Author: Alex Harui <ah...@apache.org>
Authored: Wed Nov 9 21:52:21 2016 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Wed Nov 9 21:52:32 2016 -0800

----------------------------------------------------------------------
 .../projects/HTML/src/main/flex/org/apache/flex/core/UIBase.as    | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a7d484d3/frameworks/projects/HTML/src/main/flex/org/apache/flex/core/UIBase.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/src/main/flex/org/apache/flex/core/UIBase.as b/frameworks/projects/HTML/src/main/flex/org/apache/flex/core/UIBase.as
index 5dbea38..0b0dbb5 100644
--- a/frameworks/projects/HTML/src/main/flex/org/apache/flex/core/UIBase.as
+++ b/frameworks/projects/HTML/src/main/flex/org/apache/flex/core/UIBase.as
@@ -981,9 +981,10 @@ package org.apache.flex.core
          */        
 		override public function addBead(bead:IBead):void
 		{
-            super.addBead(bead);
             if (bead is IBeadView)
                 _view = bead as IBeadView;
+            
+            super.addBead(bead);
 			
 			if (bead is IBeadView) {
 				IEventDispatcher(this).dispatchEvent(new Event("viewChanged"));