]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/wizards/RegisterRepoWizard.java
Migrate SLC modules
[gpl/argeo-slc.git] / plugins / org.argeo.slc.client.ui.dist / src / main / java / org / argeo / slc / client / ui / dist / wizards / RegisterRepoWizard.java
index 76df0627411671420af322b6930c134e4bd87c10..3f7f30c6588b7ebd5484c115be5007daa2b1f8f0 100644 (file)
@@ -224,7 +224,7 @@ public class RegisterRepoWizard extends Wizard {
 
                /** Creates label and text. */
                protected Text createLT(Composite parent, String label, String initial) {
-                       new Label(parent, SWT.NONE).setText(label);
+                       new Label(parent, SWT.RIGHT).setText(label);
                        Text text = new Text(parent, SWT.SINGLE | SWT.LEAD | SWT.BORDER);
                        text.setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, true));
                        text.setText(initial);
@@ -234,7 +234,7 @@ public class RegisterRepoWizard extends Wizard {
                /** Creates label and check. */
                protected Button createLC(Composite parent, String label,
                                Boolean initial) {
-                       new Label(parent, SWT.NONE).setText(label);
+                       new Label(parent, SWT.RIGHT).setText(label);
                        Button check = new Button(parent, SWT.CHECK);
                        check.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
                        check.setSelection(initial);