1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-30 21:55:31 +02:00

Fix look issues when resizing the dialog.

This commit is contained in:
Doug Schaefer 2006-04-26 19:09:42 +00:00
parent e9210dce8c
commit 165512e1b8

View file

@ -119,7 +119,7 @@ public class CProjectPlatformPage extends WizardPage {
Composite composite = new Composite(parent, SWT.NULL);
composite.setFont(parent.getFont());
composite.setLayout(new GridLayout());
composite.setLayoutData(new GridData(GridData.FILL_BOTH));
composite.setLayoutData(new GridData(SWT.BEGINNING, SWT.BEGINNING, false, false));
// Create a check box table of valid configurations
final Label configLabel = new Label(composite, SWT.LEFT);
@ -173,6 +173,7 @@ public class CProjectPlatformPage extends WizardPage {
});
Button deselectAll = new Button(composite2, SWT.NONE);
deselectAll.setLayoutData(new GridData(GridData.FILL_BOTH));
deselectAll.setText(ManagedBuilderUIMessages.getResourceString(DESELECT_ALL_LABEL));
deselectAll.addSelectionListener(new SelectionListener() {
public void widgetDefaultSelected(SelectionEvent e) {