Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase InternalDialog width hint from 50 characters to 70 characters #2386

Merged
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