Return-Path: X-Original-To: apmail-flex-commits-archive@www.apache.org Delivered-To: apmail-flex-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B9EBD18785 for ; Wed, 23 Mar 2016 12:03:21 +0000 (UTC) Received: (qmail 59643 invoked by uid 500); 23 Mar 2016 12:03:21 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 59623 invoked by uid 500); 23 Mar 2016 12:03:21 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 59615 invoked by uid 99); 23 Mar 2016 12:03:21 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Mar 2016 12:03:21 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 7D294E050B; Wed, 23 Mar 2016 12:03:21 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: mihaic@apache.org To: commits@flex.apache.org Date: Wed, 23 Mar 2016 12:03:23 -0000 Message-Id: In-Reply-To: <128bde2ed12f4147b35b6c53fe19c0ab@git.apache.org> References: <128bde2ed12f4147b35b6c53fe19c0ab@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [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 Authored: Wed Mar 23 12:23:42 2016 +0100 Committer: Mihai Chira 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]