mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-08 17:45:24 +02:00
[142962] - fixed grid data for description portion of form
This commit is contained in:
parent
c50f92edbb
commit
1a165ae1dd
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ public class ServicesForm extends SystemBaseForm implements ICheckStateListener
|
||||||
_descriptionVerbage = new Text(parent, SWT.BORDER | SWT.READ_ONLY | SWT.WRAP);
|
_descriptionVerbage = new Text(parent, SWT.BORDER | SWT.READ_ONLY | SWT.WRAP);
|
||||||
_descriptionVerbage.setText(getCurrentVerbage());
|
_descriptionVerbage.setText(getCurrentVerbage());
|
||||||
_descriptionVerbage.setEditable(false);
|
_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;
|
gridData.widthHint = 150;
|
||||||
_descriptionVerbage.setLayoutData(gridData);
|
_descriptionVerbage.setLayoutData(gridData);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue