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

[3/4] git commit: [flex-sdk] [refs/heads/develop] - FLEX-34837 As noticed in FLEX-26808, if the dimensions are not specified the grid layout will not render its GridViews. Test still passes.

FLEX-34837
As noticed in FLEX-26808, if the dimensions are not specified the grid layout will not render its GridViews. Test still passes.


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

Branch: refs/heads/develop
Commit: cd338fdf4a6232b32f8eb02d0174a461c2919ef8
Parents: ae65e68
Author: Mihai Chira <mi...@apache.org>
Authored: Wed Mar 23 12:23:42 2016 +0100
Committer: Mihai Chira <mi...@apache.org>
Committed: Wed Mar 23 12:23:42 2016 +0100

----------------------------------------------------------------------
 .../spark/tests/spark/components/DataGrid_FLEX_34837_Tests.as      | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/cd338fdf/frameworks/projects/spark/tests/spark/components/DataGrid_FLEX_34837_Tests.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/spark/tests/spark/components/DataGrid_FLEX_34837_Tests.as b/frameworks/projects/spark/tests/spark/components/DataGrid_FLEX_34837_Tests.as
index ab59317..6c3f7ae 100644
--- a/frameworks/projects/spark/tests/spark/components/DataGrid_FLEX_34837_Tests.as
+++ b/frameworks/projects/spark/tests/spark/components/DataGrid_FLEX_34837_Tests.as
@@ -37,6 +37,8 @@ package spark.components {
         public function setUp():void
         {
             _sut = new DataGrid();
+            _sut.width = 200;
+            _sut.height = 200;
         }
 
         [After]