1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Bug #178603: table truncate

This commit is contained in:
Oleg Krasilnikov 2007-03-21 17:21:29 +00:00
parent 60b7b5d0d0
commit 5f4612c76a

View file

@ -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);