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

[188159] minor layout changes in Local Changes Pending dialog to allow message to not be truncated.

This commit is contained in:
David Dykstal 2007-05-30 16:20:59 +00:00
parent 4fef3aa04c
commit 712ecaaf14

View file

@ -110,11 +110,12 @@ public class SystemDownloadConflictAction extends SystemBaseAction implements Ru
Label label = new Label(m, 0);
image.setBackground(label.getBackground());
label.setImage(image);
label.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_CENTER | GridData.VERTICAL_ALIGN_BEGINNING));
label.setLayoutData(new GridData(SWT.BEGINNING, SWT.CENTER, false, false));
Text text = new Text(m, SWT.WRAP | SWT.MULTI);
text.setEditable(false);
text.setText(_dialogText);
text.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
Composite options = new Composite(c, SWT.NONE);
GridLayout olayout = new GridLayout();