Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Keppler2018-03-27 06:05:23 +0000
committerMichael Keppler2018-03-27 06:05:23 +0000
commit930fe11bdde0f9796ae3e888695f01c4558169b6 (patch)
tree79a89e25ad56226bf6a4836d81f287faffeacdd7 /bundles/org.eclipse.equinox.p2.ui
parent806dce05c746653b844f791d7acc9b9a52ced718 (diff)
downloadrt.equinox.p2-930fe11bdde0f9796ae3e888695f01c4558169b6.tar.gz
rt.equinox.p2-930fe11bdde0f9796ae3e888695f01c4558169b6.tar.xz
rt.equinox.p2-930fe11bdde0f9796ae3e888695f01c4558169b6.zip
Let the main label control grab the horizontal excess space to resize with the property page. The same flag was already set for the nearly identical license property page. Change-Id: I7067f24bec245bc28a825630ad591b35b09306fa Signed-off-by: Michael Keppler <Michael.Keppler@gmx.de> Bug:532923
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.ui')
-rw-r--r--bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/IUCopyrightPropertyPage.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/IUCopyrightPropertyPage.java b/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/IUCopyrightPropertyPage.java
index a6a64d6e8..a2376bcd8 100644
--- a/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/IUCopyrightPropertyPage.java
+++ b/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/IUCopyrightPropertyPage.java
@@ -41,7 +41,7 @@ public class IUCopyrightPropertyPage extends IUPropertyPage {
composite.setLayout(layout);
Text text = new Text(composite, SWT.MULTI | SWT.V_SCROLL | SWT.H_SCROLL | SWT.BORDER | SWT.WRAP);
- GridData gd = new GridData(SWT.FILL, SWT.FILL, false, true);
+ GridData gd = new GridData(SWT.FILL, SWT.FILL, true, true);
gd.widthHint = computeWidthLimit(text, 80);
gd.grabExcessVerticalSpace = true;
text.setLayoutData(gd);

Back to the top