// Machine choice
machineSelect = MachineContextSwtTools.createMachineSelector(composite, SWT.NONE);
- machineDescription = new Label(composite, SWT.NONE);
+ machineDescription = new Label(composite, SWT.WRAP);
machineSelect.addListener(md -> machineDescription.setText(md.getDescription()));
machineDescription.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 2, 1));
machineSelect = MachineContextSwtTools.createMachineSelector(composite, SWT.NONE);
machineSelect.addListener(md -> setPageComplete(isValid()));
- machineDescription = new Label(composite, SWT.NONE);
+ machineDescription = new Label(composite, SWT.WRAP);
machineSelect.addListener(md -> machineDescription.setText(md.getDescription()));
machineDescription.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 2, 1));
}