Skip to content

Commit

Permalink
[#1328] Improve appearance for License Status Dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
eparovyshnaya committed Mar 25, 2024
1 parent db50d44 commit 05aabf7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ protected final void configureShell(Shell shell) {
super.configureShell(shell);
shell.setText(LicenseStatusDialogMessages.LicenseStatusDialog_title);
shell.setImage(getDefaultImage());
shell.setSize(840, 600);
shell.setSize(1200, 600);

Check warning on line 57 in bundles/org.eclipse.passage.lic.jface/src/org/eclipse/passage/lic/internal/jface/dialogs/licensing/BaseLicenseStatusDialog.java

View check run for this annotation

Codecov / codecov/patch

bundles/org.eclipse.passage.lic.jface/src/org/eclipse/passage/lic/internal/jface/dialogs/licensing/BaseLicenseStatusDialog.java#L57

Added line #L57 was not covered by tests
}

@Override
Expand All @@ -63,7 +63,7 @@ protected final void buildUI(Composite parent) {
.withColumn(LicenseStatusDialogMessages.LicenseStatusDialog_column_id, //
600, RequirementStatus::feature)
.withColumn(LicenseStatusDialogMessages.LicenseStatusDialog_column_status, //
200, RequirementStatus::status)
500, RequirementStatus::status)

Check warning on line 66 in bundles/org.eclipse.passage.lic.jface/src/org/eclipse/passage/lic/internal/jface/dialogs/licensing/BaseLicenseStatusDialog.java

View check run for this annotation

Codecov / codecov/patch

bundles/org.eclipse.passage.lic.jface/src/org/eclipse/passage/lic/internal/jface/dialogs/licensing/BaseLicenseStatusDialog.java#L66

Added line #L66 was not covered by tests
.viewer();
notice = new StyledText(parent, SWT.BORDER | SWT.READ_ONLY);
notice.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
Expand Down

0 comments on commit 05aabf7

Please sign in to comment.