diff --git a/bundles/org.eclipse.passage.lic.jface/src/org/eclipse/passage/lic/internal/jface/dialogs/licensing/EnvironmentStateDialog.java b/bundles/org.eclipse.passage.lic.jface/src/org/eclipse/passage/lic/internal/jface/dialogs/licensing/EnvironmentStateDialog.java index b7f8710dd..242c17d17 100644 --- a/bundles/org.eclipse.passage.lic.jface/src/org/eclipse/passage/lic/internal/jface/dialogs/licensing/EnvironmentStateDialog.java +++ b/bundles/org.eclipse.passage.lic.jface/src/org/eclipse/passage/lic/internal/jface/dialogs/licensing/EnvironmentStateDialog.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2020, 2021 ArSysOp + * Copyright (c) 2020, 2024 ArSysOp * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License 2.0 which is available at @@ -9,6 +9,7 @@ * * Contributors: * ArSysOp - initial API and implementation + * ArSysOp - further support *******************************************************************************/ package org.eclipse.passage.lic.internal.jface.dialogs.licensing; @@ -53,6 +54,18 @@ protected Control createDialogArea(Composite parent) { return folder; } + @Override + protected void configureShell(Shell shell) { + super.configureShell(shell); + shell.setSize(500, 700); + shell.setText(EnvironmentStateDialogMessages.EnvironmentStatesDialog_title); + } + + @Override + protected final boolean isResizable() { + return true; + } + private void installTabPerEnvironment(TabFolder folder, RuntimeEnvironment environment) { TabItem item = new TabItem(folder, SWT.NONE); item.setText(environment.id().identifier()); @@ -81,13 +94,6 @@ private Composite display(ScrolledComposite scrolled, RuntimeEnvironment environ return composite; } - @Override - protected void configureShell(Shell shell) { - super.configureShell(shell); - shell.setSize(500, 700); - shell.setText(EnvironmentStateDialogMessages.EnvironmentStatesDialog_title); - } - private String state(RuntimeEnvironment environment) { try { return environment.state();