1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 23:05:47 +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) { public ManageConfigDialog(Shell parentShell, String _title, ICProjectDescription prjd) {
super(parentShell); super(parentShell);
setShellStyle(getShellStyle() | SWT.RESIZE);
title = _title; title = _title;
des = prjd; des = prjd;
} }
@ -109,7 +110,7 @@ public class ManageConfigDialog extends Dialog {
// Create the current config table // Create the current config table
table = new Table(composite, SWT.BORDER | SWT.SINGLE | SWT.V_SCROLL | SWT.H_SCROLL | SWT.FULL_SELECTION); 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; gd.horizontalSpan = 4;
table.setLayoutData(gd); table.setLayoutData(gd);
table.setHeaderVisible(true); table.setHeaderVisible(true);