1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-13 19:25:38 +02:00

[269046] - [debug view] Debug target icon shows that target is suspended when it's actually running.

This commit is contained in:
Pawel Piech 2009-03-17 18:31:57 +00:00
parent 12a2cb30e8
commit 4eacd375ab

View file

@ -97,7 +97,7 @@ public abstract class AbstractContainerVMNode extends AbstractDMVMNode
@Override
public boolean isEnabled(IStatus status, java.util.Map<String,Object> properties) {
return !Boolean.TRUE.equals(properties.get(ILaunchVMConstants.PROP_IS_SUSPENDED));
return Boolean.TRUE.equals(properties.get(ILaunchVMConstants.PROP_IS_SUSPENDED));
};
},
new LabelImage(DebugUITools.getImageDescriptor(IDebugUIConstants.IMG_OBJS_DEBUG_TARGET)),