Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading