Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2020-02-08 18:05:21 +0000
committerEugene Tarassov2020-02-08 18:05:21 +0000
commitd690466beb23a13854b92ff882dce919e8174f0f (patch)
treec2d83c4c0677bc071af7ce820c2dc0fef22539dd
parentd265940f59379e7cd537620238ca6fbc0b503147 (diff)
downloadorg.eclipse.tcf-d690466beb23a13854b92ff882dce919e8174f0f.tar.gz
org.eclipse.tcf-d690466beb23a13854b92ff882dce919e8174f0f.tar.xz
org.eclipse.tcf-d690466beb23a13854b92ff882dce919e8174f0f.zip
Target Explorer: Fixed "No property tester contributes a property org.eclipse.tcf.te.launch.ui.model.canDelete..."
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.launch.ui/plugin.xml9
1 files changed, 5 insertions, 4 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.launch.ui/plugin.xml b/target_explorer/plugins/org.eclipse.tcf.te.launch.ui/plugin.xml
index 2785faf34..6e19d6177 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.launch.ui/plugin.xml
+++ b/target_explorer/plugins/org.eclipse.tcf.te.launch.ui/plugin.xml
@@ -641,10 +641,11 @@
</activeWhen>
<enabledWhen>
<with variable="selection">
- <iterate
- operator="and"
- ifEmpty="false">
- <test property="org.eclipse.tcf.te.launch.ui.model.canDelete"/>
+ <iterate operator="and" ifEmpty="false">
+ <and>
+ <instanceof value="org.eclipse.tcf.te.launch.ui.model.LaunchNode"/>
+ <test property="org.eclipse.tcf.te.launch.ui.model.canDelete"/>
+ </and>
</iterate>
</with>
</enabledWhen>

Back to the top