From 05aabf756c456c7e3135fcb868d4dc8da07800ae Mon Sep 17 00:00:00 2001 From: eparovyshnaya Date: Mon, 25 Mar 2024 19:28:50 +0300 Subject: [PATCH] [#1328] Improve appearance for License Status Dialog --- .../jface/dialogs/licensing/BaseLicenseStatusDialog.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bundles/org.eclipse.passage.lic.jface/src/org/eclipse/passage/lic/internal/jface/dialogs/licensing/BaseLicenseStatusDialog.java b/bundles/org.eclipse.passage.lic.jface/src/org/eclipse/passage/lic/internal/jface/dialogs/licensing/BaseLicenseStatusDialog.java index 9683b6b40..71c7dba92 100644 --- a/bundles/org.eclipse.passage.lic.jface/src/org/eclipse/passage/lic/internal/jface/dialogs/licensing/BaseLicenseStatusDialog.java +++ b/bundles/org.eclipse.passage.lic.jface/src/org/eclipse/passage/lic/internal/jface/dialogs/licensing/BaseLicenseStatusDialog.java @@ -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); } @Override @@ -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) .viewer(); notice = new StyledText(parent, SWT.BORDER | SWT.READ_ONLY); notice.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));