Skip to content

Commit 3fbb469

Browse files
committed
Wrap longer error messages in error details dialog
Fixes #2781
1 parent 033cedf commit 3fbb469

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bundles/org.eclipse.ui.views.log/src/org/eclipse/ui/internal/views/log/EventDetailsDialog.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ private void createTextSection(Composite parent) {
693693
label.setText(Messages.EventDetailsDialog_message);
694694
gd = new GridData(GridData.VERTICAL_ALIGN_BEGINNING);
695695
label.setLayoutData(gd);
696-
msgText = new Text(textContainer, SWT.MULTI | SWT.V_SCROLL | SWT.H_SCROLL | SWT.BORDER);
696+
msgText = new Text(textContainer, SWT.MULTI | SWT.V_SCROLL | SWT.H_SCROLL | SWT.BORDER | SWT.WRAP);
697697
msgText.setEditable(false);
698698
gd = new GridData(GridData.FILL_BOTH | GridData.GRAB_HORIZONTAL);
699699
gd.horizontalSpan = 2;

0 commit comments

Comments
 (0)