Community
Participate
Working Groups
Created attachment 151644 [details] Add workbench IEvaluationContext as a parent I've created a new extension of org.eclipse.debug.ui.toggleBreakpointsTargetFactories and made its enablement based on an ActionSet. <enablement> <with variable="activeContexts"> <iterate operator="or"> <equals value="org.eclipse.cdt.debug.ui.tracepointActionSet"> </equals> </iterate> </with> </enablement> This condition is not respected because the 'activeContext' variable is not available in the IEvaluationContext that is used to by the ToggleBreakpointsTargetManager. The attached patch adds the IEvaluationContext of the workbench as a parent.
Assigning to Pawel for review.
Makes perfect sense, thanks Mark. I committed the fix.
Marking verified.
Thanks for the quick commit!