mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-23 00:03:53 +02:00
[188159] minor layout changes in Local Changes Pending dialog to allow message to not be truncated.
This commit is contained in:
parent
4fef3aa04c
commit
712ecaaf14
1 changed files with 2 additions and 1 deletions
|
@ -110,11 +110,12 @@ public class SystemDownloadConflictAction extends SystemBaseAction implements Ru
|
||||||
Label label = new Label(m, 0);
|
Label label = new Label(m, 0);
|
||||||
image.setBackground(label.getBackground());
|
image.setBackground(label.getBackground());
|
||||||
label.setImage(image);
|
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 text = new Text(m, SWT.WRAP | SWT.MULTI);
|
||||||
text.setEditable(false);
|
text.setEditable(false);
|
||||||
text.setText(_dialogText);
|
text.setText(_dialogText);
|
||||||
|
text.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
|
||||||
|
|
||||||
Composite options = new Composite(c, SWT.NONE);
|
Composite options = new Composite(c, SWT.NONE);
|
||||||
GridLayout olayout = new GridLayout();
|
GridLayout olayout = new GridLayout();
|
||||||
|
|
Loading…
Add table
Reference in a new issue