From 5f4612c76a9664846929dc6a4702427f57fd3ec5 Mon Sep 17 00:00:00 2001 From: Oleg Krasilnikov Date: Wed, 21 Mar 2007 17:21:29 +0000 Subject: [PATCH] Bug #178603: table truncate --- .../src/org/eclipse/cdt/ui/newui/ManageConfigDialog.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/newui/ManageConfigDialog.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/newui/ManageConfigDialog.java index 78571b83286..72d50734fb4 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/newui/ManageConfigDialog.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/newui/ManageConfigDialog.java @@ -88,6 +88,7 @@ public class ManageConfigDialog extends Dialog { */ public ManageConfigDialog(Shell parentShell, String _title, ICProjectDescription prjd) { super(parentShell); + setShellStyle(getShellStyle() | SWT.RESIZE); title = _title; des = prjd; } @@ -109,7 +110,7 @@ public class ManageConfigDialog extends Dialog { // Create the current config table table = new Table(composite, SWT.BORDER | SWT.SINGLE | SWT.V_SCROLL | SWT.H_SCROLL | SWT.FULL_SELECTION); - GridData gd = new GridData(GridData.FILL); + GridData gd = new GridData(GridData.FILL_BOTH); gd.horizontalSpan = 4; table.setLayoutData(gd); table.setHeaderVisible(true);