Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Leherbauer2014-03-31 11:11:43 +0000
committerAnton Leherbauer2014-03-31 11:11:43 +0000
commit6fc76a8adc2ab04e6dab944a4de69fc9da343624 (patch)
tree3dd3a5529761df4678ea20e29ffb828e54feae18
parent0b03b25be85a92707c203d5003419a1c1e5f6fdd (diff)
downloadorg.eclipse.cdt-6fc76a8adc2ab04e6dab944a4de69fc9da343624.tar.gz
org.eclipse.cdt-6fc76a8adc2ab04e6dab944a4de69fc9da343624.tar.xz
org.eclipse.cdt-6fc76a8adc2ab04e6dab944a4de69fc9da343624.zip
Bug 430117 - "Connect to Process" is always enabled initially
-rw-r--r--debug/org.eclipse.cdt.debug.ui/plugin.xml8
1 files changed, 8 insertions, 0 deletions
diff --git a/debug/org.eclipse.cdt.debug.ui/plugin.xml b/debug/org.eclipse.cdt.debug.ui/plugin.xml
index 676b9e8b738..839d439bede 100644
--- a/debug/org.eclipse.cdt.debug.ui/plugin.xml
+++ b/debug/org.eclipse.cdt.debug.ui/plugin.xml
@@ -2083,6 +2083,14 @@
<handler
class="org.eclipse.cdt.debug.internal.ui.commands.ConnectCommandHandler"
commandId="org.eclipse.cdt.debug.ui.command.connect">
+ <activeWhen>
+ <with variable="org.eclipse.core.runtime.Platform">
+ <test property="org.eclipse.core.runtime.bundleState"
+ args="org.eclipse.cdt.debug.ui"
+ value="ACTIVE">
+ </test>
+ </with>
+ </activeWhen>
</handler>
<handler
class="org.eclipse.cdt.debug.internal.ui.commands.DebugNewExecutableHandler"

Back to the top