mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-03 07:05:24 +02:00
Bug 149284 - shells not properly initialized when only ssh is installed
This commit is contained in:
parent
dff0b6243c
commit
108fd36c65
2 changed files with 4 additions and 0 deletions
|
@ -12,6 +12,7 @@ Require-Bundle: org.eclipse.ui,
|
|||
org.eclipse.rse.connectorservice.ssh,
|
||||
org.eclipse.rse.services.ssh,
|
||||
org.eclipse.rse.subsystems.shells.core,
|
||||
org.eclipse.rse.shells.ui,
|
||||
org.eclipse.rse.ui
|
||||
Eclipse-LazyStart: true
|
||||
Export-Package: org.eclipse.rse.subsystems.shells.ssh
|
||||
|
|
|
@ -28,6 +28,9 @@ public class Activator extends AbstractUIPlugin {
|
|||
*/
|
||||
public void start(BundleContext context) throws Exception {
|
||||
super.start(context);
|
||||
|
||||
// shells ui needs to be started for proper UI init
|
||||
org.eclipse.rse.shells.ui.Activator.getDefault();
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue