From e71a8184db7784d3c68ec402ff81c4b1bdcb8787 Mon Sep 17 00:00:00 2001
From: Lukas Ladenberger <lukas.ladenberger@googlemail.com>
Date: Wed, 22 Aug 2012 15:00:59 +0200
Subject: [PATCH] minor changes

---
 .../editor/observer/wizard/WizardTableObserver.java    | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/de.bmotionstudio.gef.editor/src/de/bmotionstudio/gef/editor/observer/wizard/WizardTableObserver.java b/de.bmotionstudio.gef.editor/src/de/bmotionstudio/gef/editor/observer/wizard/WizardTableObserver.java
index 9e6ef395..a2782d2a 100644
--- a/de.bmotionstudio.gef.editor/src/de/bmotionstudio/gef/editor/observer/wizard/WizardTableObserver.java
+++ b/de.bmotionstudio.gef.editor/src/de/bmotionstudio/gef/editor/observer/wizard/WizardTableObserver.java
@@ -102,11 +102,15 @@ public class WizardTableObserver extends ObserverWizard {
 			txtExpression.setLayoutData(new GridData(GridData.FILL_BOTH));
 
 			Composite conRight = new Composite(container, SWT.NONE);
-			conRight.setLayoutData(new GridData(GridData.FILL_BOTH));
+
+			GridData gData = new GridData(GridData.FILL_VERTICAL);
+			gData.widthHint = 125;
+
+			conRight.setLayoutData(gData);
 			conRight.setLayout(new GridLayout(1, false));
 
-			lb = new Label(conRight, SWT.NONE);
-			lb.setText("List of available power sets:");
+			lb = new Label(conRight, SWT.WRAP);
+			lb.setText("Power sets:");
 			lb.setLayoutData(new GridData(GridData.VERTICAL_ALIGN_BEGINNING));
 
 			ArrayList<String> relationList = new ArrayList<String>();
-- 
GitLab