Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorddunne2008-01-17 20:33:39 +0000
committerddunne2008-01-17 20:33:39 +0000
commite59ff55dd9681264a5b3e91ef74aec34e2fbb892 (patch)
tree31bf97a52833c599b92ced840acee0ccd0a6eb17
parent269033b66f9ade9a128ef270283f2afc5ffd0032 (diff)
downloadorg.eclipse.osee-e59ff55dd9681264a5b3e91ef74aec34e2fbb892.tar.gz
org.eclipse.osee-e59ff55dd9681264a5b3e91ef74aec34e2fbb892.tar.xz
org.eclipse.osee-e59ff55dd9681264a5b3e91ef74aec34e2fbb892.zip
Fixed SMAEditor workflow layout
-rw-r--r--org.eclipse.osee.ats/src/org/eclipse/osee/ats/editor/SMARelationsComposite.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.osee.ats/src/org/eclipse/osee/ats/editor/SMARelationsComposite.java b/org.eclipse.osee.ats/src/org/eclipse/osee/ats/editor/SMARelationsComposite.java
index a4a7d21de26..392235a7f65 100644
--- a/org.eclipse.osee.ats/src/org/eclipse/osee/ats/editor/SMARelationsComposite.java
+++ b/org.eclipse.osee.ats/src/org/eclipse/osee/ats/editor/SMARelationsComposite.java
@@ -60,7 +60,7 @@ public class SMARelationsComposite extends Composite {
this.smaMgr = smaMgr;
try {
setLayout(ALayout.getZeroMarginLayout(2, false));
- GridData gd = new GridData(GridData.FILL_BOTH);
+ GridData gd = new GridData(GridData.FILL_HORIZONTAL);
gd.widthHint = 500;
setLayoutData(gd);
toolkit.adapt(this);

Back to the top