From 5344529efb27c4c0f72b08eeec58e91dfd945010 Mon Sep 17 00:00:00 2001 From: HyunJong Park Date: Wed, 25 May 2016 15:17:04 +0900 Subject: [PATCH] TEXT: Fix. the vertical scroll bar - Fill the vertical scroll bar in text Change-Id: I12c061ab65cb2703a42d1602e92a6fbfc553f733 Signed-off-by: HyunJong Park --- .../common/org/eclipse/swt/custom/TizenText.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TizenText.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TizenText.java index bda3400..153cd9c 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TizenText.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TizenText.java @@ -71,7 +71,7 @@ public class TizenText extends Canvas { textStyle = style; this.setLayout(new GridLayout(1, false)); text = new OriginalText(this, removeBorderStyle(style)); - GridData gridData = new GridData(GridData.FILL_HORIZONTAL); + GridData gridData = new GridData(GridData.FILL_HORIZONTAL | GridData.FILL_VERTICAL); gridData.grabExcessHorizontalSpace = true; gridData.grabExcessVerticalSpace = true; text.setLayoutData(gridData); -- 2.7.4