Skip to content

Commit 6d7fa39

Browse files
committed
Increase InternalDialog width hint from 50 characters to 70 characters
1 parent 545ac67 commit 6d7fa39

File tree

1 file changed

+2
-2
lines changed
  • bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers

1 file changed

+2
-2
lines changed

bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/InternalDialog.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ private void createTitleArea(Composite parent) {
239239
titleImageLabel.setLayoutData(layoutData);
240240

241241
GridData messageData = new GridData(SWT.FILL, SWT.FILL, true, true);
242-
messageData.widthHint = convertWidthInCharsToPixels(50);
242+
messageData.widthHint = convertWidthInCharsToPixels(70);
243243
mainMessageLabel = new Label(titleArea, SWT.WRAP);
244244
mainMessageLabel.setLayoutData(messageData);
245245
// main message set up early, to address bug 222391
@@ -602,7 +602,7 @@ private Composite createSingleStatusDisplayArea(Composite parent) {
602602
// label that wraps
603603
singleStatusLabel = new Label(singleStatusParent, SWT.WRAP);
604604
GridData labelLayoutData = new GridData(SWT.FILL, SWT.FILL, true, true);
605-
labelLayoutData.widthHint = convertWidthInCharsToPixels(50);
605+
labelLayoutData.widthHint = convertWidthInCharsToPixels(70);
606606
singleStatusLabel.setLayoutData(labelLayoutData);
607607
// main message set up early, to address bug 222391
608608
singleStatusLabel.setText(getLabelProviderWrapper().getColumnText(getCurrentStatusAdapter(), 0));

0 commit comments

Comments
 (0)