From 2f7e8c64717099173ee792fd09fc9c3cfaa38854 Mon Sep 17 00:00:00 2001 From: Hannes Wellmann Date: Mon, 3 Nov 2025 16:24:06 +0100 Subject: [PATCH] Expand Dependency Analysis section of the Manifest Editor by default Part of https://github.com/eclipse-pde/eclipse.pde/issues/1881 --- .../pde/internal/ui/editor/plugin/DependenciesPage.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/editor/plugin/DependenciesPage.java b/ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/editor/plugin/DependenciesPage.java index 28ab169ce53..f9c76fbb5d4 100644 --- a/ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/editor/plugin/DependenciesPage.java +++ b/ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/editor/plugin/DependenciesPage.java @@ -79,7 +79,8 @@ protected void createFormContent(IManagedForm managedForm) { } else { gd.horizontalSpan = 2; } - section = new DependencyAnalysisSection(this, right, ExpandableComposite.COMPACT); + // Expand by default + section = new DependencyAnalysisSection(this, right, ExpandableComposite.EXPANDED); } else { // No MANIFEST.MF (not a Bundle), 3.0 timeframe MatchSection matchSection = new MatchSection(this, right, true);