diff --git a/ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/editor/product/ProductInfoSection.java b/ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/editor/product/ProductInfoSection.java index df4b9ea8d6..adc9e22cca 100644 --- a/ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/editor/product/ProductInfoSection.java +++ b/ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/editor/product/ProductInfoSection.java @@ -409,7 +409,7 @@ public void registryChanged(IRegistryChangeEvent event) { if (applicationDeltas.length + productDeltas.length == 0) { return; } - Display.getDefault().syncExec(() -> { + Display.getDefault().asyncExec(() -> { fAppCombo.handleExtensionDelta(applicationDeltas); fProductCombo.handleExtensionDelta(productDeltas); }); @@ -427,7 +427,7 @@ public void stateChanged(State newState) { System.arraycopy(apps, 0, finalApps, 0, apps.length); finalApps[apps.length] = ""; //$NON-NLS-1$ - Display.getDefault().syncExec(() -> { + Display.getDefault().asyncExec(() -> { fAppCombo.reload(finalApps); fProductCombo.reload(finalProducts); });