This is an automated email from the ASF dual-hosted git repository. aharui pushed a commit to branch feature/MXRoyale in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
commit 762b0b53a668bfe02681b201e2ac05efd0619708 Author: Alex Harui <aha...@apache.org> AuthorDate: Fri Mar 23 15:52:53 2018 -0700 fix label sizing --- .../src/main/royale/org/apache/royale/html/beads/TextFieldViewBase.as | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/TextFieldViewBase.as b/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/TextFieldViewBase.as index 946fe97..bfbe960 100644 --- a/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/TextFieldViewBase.as +++ b/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/TextFieldViewBase.as @@ -403,10 +403,10 @@ package org.apache.royale.html.beads } if (autoWidth) { - (host as UIBase).setWidth(textField.textWidth, true); + (host as UIBase).setWidth(textField.textWidth + 4, true); } if (autoHeight) { - (host as UIBase).setHeight(textField.textHeight, true); + (host as UIBase).setHeight(textField.textHeight + 4, true); } } } -- To stop receiving notification emails like this one, please contact aha...@apache.org.