Skip to content

Commit

Permalink
Increase InternalDialog width hint from 50 characters to 70 characters
Browse files Browse the repository at this point in the history
  • Loading branch information
merks committed Oct 11, 2024
1 parent 545ac67 commit 6d7fa39
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ private void createTitleArea(Composite parent) {
titleImageLabel.setLayoutData(layoutData);

GridData messageData = new GridData(SWT.FILL, SWT.FILL, true, true);
messageData.widthHint = convertWidthInCharsToPixels(50);
messageData.widthHint = convertWidthInCharsToPixels(70);
mainMessageLabel = new Label(titleArea, SWT.WRAP);
mainMessageLabel.setLayoutData(messageData);
// main message set up early, to address bug 222391
Expand Down Expand Up @@ -602,7 +602,7 @@ private Composite createSingleStatusDisplayArea(Composite parent) {
// label that wraps
singleStatusLabel = new Label(singleStatusParent, SWT.WRAP);
GridData labelLayoutData = new GridData(SWT.FILL, SWT.FILL, true, true);
labelLayoutData.widthHint = convertWidthInCharsToPixels(50);
labelLayoutData.widthHint = convertWidthInCharsToPixels(70);
singleStatusLabel.setLayoutData(labelLayoutData);
// main message set up early, to address bug 222391
singleStatusLabel.setText(getLabelProviderWrapper().getColumnText(getCurrentStatusAdapter(), 0));
Expand Down

0 comments on commit 6d7fa39

Please sign in to comment.