mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-17 05:05:43 +02:00
Fix look issues when resizing the dialog.
This commit is contained in:
parent
e9210dce8c
commit
165512e1b8
1 changed files with 2 additions and 1 deletions
|
@ -119,7 +119,7 @@ public class CProjectPlatformPage extends WizardPage {
|
||||||
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());
|
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
|
// Create a check box table of valid configurations
|
||||||
final Label configLabel = new Label(composite, SWT.LEFT);
|
final Label configLabel = new Label(composite, SWT.LEFT);
|
||||||
|
@ -173,6 +173,7 @@ public class CProjectPlatformPage extends WizardPage {
|
||||||
});
|
});
|
||||||
|
|
||||||
Button deselectAll = new Button(composite2, SWT.NONE);
|
Button deselectAll = new Button(composite2, SWT.NONE);
|
||||||
|
deselectAll.setLayoutData(new GridData(GridData.FILL_BOTH));
|
||||||
deselectAll.setText(ManagedBuilderUIMessages.getResourceString(DESELECT_ALL_LABEL));
|
deselectAll.setText(ManagedBuilderUIMessages.getResourceString(DESELECT_ALL_LABEL));
|
||||||
deselectAll.addSelectionListener(new SelectionListener() {
|
deselectAll.addSelectionListener(new SelectionListener() {
|
||||||
public void widgetDefaultSelected(SelectionEvent e) {
|
public void widgetDefaultSelected(SelectionEvent e) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue