1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-30 04:15:35 +02:00

[142962] - fixed grid data for description portion of form

This commit is contained in:
David Dykstal 2006-12-11 23:01:55 +00:00
parent c0895a4799
commit c50f92edbb

View file

@ -123,13 +123,9 @@ public class ServicesForm extends SystemBaseForm implements ICheckStateListener
_descriptionVerbage = new Text(parent, SWT.BORDER | SWT.READ_ONLY | SWT.WRAP);
_descriptionVerbage.setText(getCurrentVerbage());
_descriptionVerbage.setEditable(false);
GridData gridData = new GridData();
gridData.horizontalAlignment = GridData.FILL;
gridData.grabExcessHorizontalSpace = true;
GridData gridData = new GridData(SWT.FILL, SWT.BEGINNING, true, true);
gridData.widthHint = 150;
gridData.verticalAlignment = GridData.BEGINNING;
data.grabExcessVerticalSpace = true;
_descriptionVerbage.setLayoutData(data);
_descriptionVerbage.setLayoutData(gridData);
_factoryViewer.addSelectionChangedListener(new ISelectionChangedListener()
{