From 037d07a9b191884111a164f76916ada4fe5a65e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Kubitz?= Date: Wed, 5 Jun 2024 10:20:39 +0200 Subject: [PATCH] Revert "Store properties dialog bounds. (#1282)" This reverts commit 8abe1b1ffbf40769264b908012034f4060bef04b. The PreferenceDialog has a custom size calculation that tries to adapt to the current page. That contradicts using the the former size --- .../eclipse/ui/internal/dialogs/PropertyDialog.java | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/PropertyDialog.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/PropertyDialog.java index 0bca15c1800..538e049600c 100644 --- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/PropertyDialog.java +++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/PropertyDialog.java @@ -17,8 +17,6 @@ import java.util.Iterator; import org.eclipse.core.runtime.Adapters; -import org.eclipse.jface.dialogs.DialogSettings; -import org.eclipse.jface.dialogs.IDialogSettings; import org.eclipse.jface.dialogs.MessageDialog; import org.eclipse.jface.preference.IPreferenceNode; import org.eclipse.jface.preference.PreferenceManager; @@ -31,10 +29,8 @@ import org.eclipse.ui.PlatformUI; import org.eclipse.ui.internal.IWorkbenchHelpContextIds; import org.eclipse.ui.internal.WorkbenchMessages; -import org.eclipse.ui.internal.WorkbenchPlugin; import org.eclipse.ui.model.IContributionService; import org.eclipse.ui.model.IWorkbenchAdapter; -import org.osgi.framework.Bundle; /** * This dialog is created and shown when 'Properties' action is performed while @@ -184,11 +180,4 @@ protected String getContributionType() { return IContributionService.TYPE_PROPERTY; } - @Override - protected IDialogSettings getDialogBoundsSettings() { - Bundle bundle = WorkbenchPlugin.getDefault().getBundle(); - IDialogSettings settings = PlatformUI.getDialogSettingsProvider(bundle).getDialogSettings(); - String name = getClass().getSimpleName() + ".dialogBounds"; //$NON-NLS-1$ - return DialogSettings.getOrCreateSection(settings, name); - } }