X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=plugins%2Forg.argeo.slc.client.ui.dist%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fclient%2Fui%2Fdist%2Fwizards%2FRegisterRepoWizard.java;h=3f7f30c6588b7ebd5484c115be5007daa2b1f8f0;hb=56980ea98154a92e9727062c7b5016d57876376b;hp=fbc7c639d6c549d9ee9306b1894f652f02864662;hpb=0d236262a853a1286b317c30d64d4692bc21c7a4;p=gpl%2Fargeo-slc.git diff --git a/plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/wizards/RegisterRepoWizard.java b/plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/wizards/RegisterRepoWizard.java index fbc7c639d..3f7f30c65 100644 --- a/plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/wizards/RegisterRepoWizard.java +++ b/plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/wizards/RegisterRepoWizard.java @@ -177,7 +177,7 @@ public class RegisterRepoWizard extends Wizard { uri = createLT(composite, "URI", DEFAULT_URI); final Button anonymousLogin = createLC(composite, - "log as anonymous", true); + "Log as anonymous", true); anonymousLogin.addSelectionListener(new SelectionListener() { public void widgetSelected(SelectionEvent e) { if (anonymousLogin.getSelection()) { @@ -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);