1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug # 200960 : manage configuration... window wrong resize behaviour

This commit is contained in:
Oleg Krasilnikov 2007-09-04 14:43:41 +00:00
parent 3a7a4a5803
commit bace2b4664

View file

@ -89,7 +89,7 @@ public class ManageConfigDialog extends Dialog {
Composite composite = new Composite(parent, SWT.NULL); Composite composite = new Composite(parent, SWT.NULL);
composite.setFont(parent.getFont()); composite.setFont(parent.getFont());
composite.setLayout(new GridLayout(4, true)); composite.setLayout(new GridLayout(4, true));
composite.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); composite.setLayoutData(new GridData(GridData.FILL_BOTH));
// 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);