Turned auto-wrapping on for machines with long descriptions
[Mograsim.git] / plugins / net.mograsim.plugin.core / src / net / mograsim / plugin / wizards / newWizards / MograsimSettingsPage.java
index f360d50..b8243f5 100644 (file)
@@ -95,7 +95,7 @@ public class MograsimSettingsPage extends WizardPage
                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));
        }