Quick fix for FormExample (avoid 0 width, 0 height clipping)
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/af7f5cd1 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/af7f5cd1 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/af7f5cd1 Branch: refs/heads/feature/dragAndDrop Commit: af7f5cd1cd55ff90f1c62c4e309c0b52e9756bbd Parents: 1fe4d2c Author: greg-dove <[email protected]> Authored: Tue Aug 22 11:30:43 2017 +1200 Committer: greg-dove <[email protected]> Committed: Tue Aug 22 11:30:43 2017 +1200 ---------------------------------------------------------------------- manualtests/FormExample/src/MyFormView.mxml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/af7f5cd1/manualtests/FormExample/src/MyFormView.mxml ---------------------------------------------------------------------- diff --git a/manualtests/FormExample/src/MyFormView.mxml b/manualtests/FormExample/src/MyFormView.mxml index 190fbe5..6e85f22 100644 --- a/manualtests/FormExample/src/MyFormView.mxml +++ b/manualtests/FormExample/src/MyFormView.mxml @@ -47,7 +47,7 @@ limitations under the License. <js:Label text="Loan Form" className="title" /> - <js:Container width="500"> + <js:Container width="500" height="600" > <js:beads> <js:VerticalColumnLayout numColumns="2" /> </js:beads>
