You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2014/05/07 00:02:52 UTC

git commit: [flex-asjs] [refs/heads/develop] - put the v in the vbox

Repository: flex-asjs
Updated Branches:
  refs/heads/develop 2fa129612 -> a19e94e9a


put the v in the vbox


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

Branch: refs/heads/develop
Commit: a19e94e9a22efec0c077e02ccb839d1e89f3b1f8
Parents: 2fa1296
Author: Alex Harui <ah...@apache.org>
Authored: Tue May 6 15:02:46 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue May 6 15:02:46 2014 -0700

----------------------------------------------------------------------
 mustella/tests/basicTests/shim/VBox.as | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a19e94e9/mustella/tests/basicTests/shim/VBox.as
----------------------------------------------------------------------
diff --git a/mustella/tests/basicTests/shim/VBox.as b/mustella/tests/basicTests/shim/VBox.as
index 891ccf6..6bbe665 100644
--- a/mustella/tests/basicTests/shim/VBox.as
+++ b/mustella/tests/basicTests/shim/VBox.as
@@ -22,6 +22,7 @@ package shim
 	import flash.display.DisplayObjectContainer;
 	
 	import org.apache.flex.html.Container;
+	import org.apache.flex.html.beads.layouts.NonVirtualVerticalLayout;
 	
 	[DefaultProperty("mxmlContent")]
     
@@ -41,6 +42,7 @@ package shim
 		public function VBox()
 		{
 			super();
+			addBead(new NonVirtualVerticalLayout());
 		}
 		
 	}