Using Builder pattern for CoreModelParameters now
[Mograsim.git] / plugins / net.mograsim.plugin.core / src / net / mograsim / plugin / nature / properties / MograsimNaturePropertyPage.java
index c51aa01..1b6c3d8 100644 (file)
@@ -24,7 +24,7 @@ public class MograsimNaturePropertyPage extends PropertyPage
        private static final String WARNING = "Changing the Mograsim machine can completely break your project. Be careful.";
        private static final String MACHINE_LABEL = "Machine definition";
        private static final String MACHINE_PROPERTY = "net.mograsim.projectMachineId";
-       private static final String DEFAULT_MACHINE = "Am2900Simple";// TODO don't hardcode that here!
+       private static final String DEFAULT_MACHINE = "Am2900Teaching";// TODO don't hardcode that here!
 
        private MachineCombo machineSelect;
        private Label machineDescription;
@@ -69,7 +69,7 @@ public class MograsimNaturePropertyPage extends PropertyPage
                // 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));