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

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

This commit is contained in:
David Dykstal 2006-12-11 23:05:35 +00:00
parent c50f92edbb
commit 1a165ae1dd

View file

@ -123,7 +123,7 @@ 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(SWT.FILL, SWT.BEGINNING, true, true);
GridData gridData = new GridData(SWT.FILL, SWT.FILL, true, true);
gridData.widthHint = 150;
_descriptionVerbage.setLayoutData(gridData);