Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristof Joswig2018-09-14 14:19:48 +0000
committerchristof.joswig@sap.com2018-09-16 19:28:11 +0000
commit3484f92c1cbc8d82122eebe9945a27497133ad09 (patch)
treeb5aa0e2d00456cae3042473f088b4022850e099d /bundles
parent557d45334ede529d39e25e0e1aecb757175647ed (diff)
downloadeclipse.platform.ui.tools-3484f92c1cbc8d82122eebe9945a27497133ad09.tar.gz
eclipse.platform.ui.tools-3484f92c1cbc8d82122eebe9945a27497133ad09.tar.xz
eclipse.platform.ui.tools-3484f92c1cbc8d82122eebe9945a27497133ad09.zip
Fix table layout to FILL.BOTH
Goto: ->Model Fragment->Handler->Persisted State table doesn't fill Change-Id: I07f5baf8d855788d956422b69b4589c35b7ff0e2 Signed-off-by: Christof Joswig <christof.joswig@sap.com>
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/ControlFactory.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/ControlFactory.java b/bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/ControlFactory.java
index f687efbc..89a5a732 100644
--- a/bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/ControlFactory.java
+++ b/bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/ControlFactory.java
@@ -263,8 +263,7 @@ public class ControlFactory {
final ObservableListContentProvider cp = new ObservableListContentProvider();
tableviewer.setContentProvider(cp);
- final GridData gd = new GridData(GridData.FILL_HORIZONTAL);
- gd.heightHint = 80;
+ final GridData gd = new GridData(SWT.FILL, SWT.FILL, true, true);
gd.verticalIndent = vIndent;
tableviewer.getControl().setLayoutData(gd);

Back to the top