mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-21 21:52:10 +02:00

The current situation is that: * launch configuration dialog tabs scroll correctly in the standard Eclipse platform dialog, but not at all in the Launchbar-specific dialog * some CDT-supplied launch configuration dialog tabs try to manage their own scrolling behaviour to fix scrolling in the Launchbar-specific dialog but this breaks scrolling for that tab in the standard Eclipse platform dialog. This change fixes the launchbar-specific editor dialog to use a scrolled composite instead of a regular composite on which to layout the content of each tab -- This gives the launchbar's configuration editing dialog exactly the same scrolling behaviour as the standard Eclipse platform configuration editing dialog. And also fixes any CDT-supplied tabs that try to manage their own scrolling behaviour so now all tabs have the same behaviour when viewed in the Launchbar-specific dialog as they do when viewed in the standard Eclipse platform dialog. Change-Id: I0d7364a24ca48bb125cae9518728b4c93b93545d Signed-off-by: Mat Booth <mat.booth@gmail.com>
21 lines
795 B
Text
21 lines
795 B
Text
Manifest-Version: 1.0
|
|
Bundle-ManifestVersion: 2
|
|
Bundle-Name: %pluginName
|
|
Bundle-SymbolicName: org.eclipse.launchbar.ui;singleton:=true
|
|
Bundle-Version: 2.4.300.qualifier
|
|
Bundle-Activator: org.eclipse.launchbar.ui.internal.Activator
|
|
Bundle-Vendor: %providerName
|
|
Require-Bundle: org.eclipse.core.runtime,
|
|
org.eclipse.ui,
|
|
org.eclipse.ui.ide,
|
|
org.eclipse.debug.ui,
|
|
org.eclipse.launchbar.core
|
|
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
|
Bundle-ActivationPolicy: lazy
|
|
Bundle-Localization: plugin
|
|
Export-Package: org.eclipse.launchbar.ui,
|
|
org.eclipse.launchbar.ui.internal;x-internal:=true,
|
|
org.eclipse.launchbar.ui.internal.commands;x-internal:=true,
|
|
org.eclipse.launchbar.ui.internal.dialogs;x-internal:=true,
|
|
org.eclipse.launchbar.ui.target
|
|
Automatic-Module-Name: org.eclipse.launchbar.ui
|