From 1ecb675c95fd44bfb182ac67da455b2ba492dad9 Mon Sep 17 00:00:00 2001 From: Peter Hormanns < Date: Wed, 31 Oct 2012 12:11:39 +0100 Subject: [PATCH] format text --- hsarweb/src/de/hsadmin/web/AbstractModule.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hsarweb/src/de/hsadmin/web/AbstractModule.java b/hsarweb/src/de/hsadmin/web/AbstractModule.java index 2fa1076..4afe9d7 100644 --- a/hsarweb/src/de/hsadmin/web/AbstractModule.java +++ b/hsarweb/src/de/hsadmin/web/AbstractModule.java @@ -151,7 +151,9 @@ public abstract class AbstractModule implements Module, Serializable { 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); }