format text

This commit is contained in:
Peter Hormanns 2012-10-31 12:11:39 +01:00
parent da8228750a
commit 1ecb675c95

View File

@ -151,7 +151,9 @@ public abstract class AbstractModule implements Module, Serializable {
application.setRunAs(property.getValue().toString()); application.setRunAs(property.getValue().toString());
} }
}); });
toolbar.addComponent(new Label(application.getLocaleConfig().getText("runas"))); Label lbl = new Label(" " + application.getLocaleConfig().getText("runas") + " ", Label.CONTENT_XHTML);
lbl.setSizeFull();
toolbar.addComponent(lbl);
toolbar.addComponent(selRunAs); toolbar.addComponent(selRunAs);
} }