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:
parent
60b7b5d0d0
commit
5f4612c76a
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Add table
Reference in a new issue