mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-14 11:45:38 +02:00
[269046] - [debug view] Debug target icon shows that target is suspended when it's actually running.
This commit is contained in:
parent
12a2cb30e8
commit
4eacd375ab
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ public abstract class AbstractContainerVMNode extends AbstractDMVMNode
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isEnabled(IStatus status, java.util.Map<String,Object> properties) {
|
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)),
|
new LabelImage(DebugUITools.getImageDescriptor(IDebugUIConstants.IMG_OBJS_DEBUG_TARGET)),
|
||||||
|
|
Loading…
Add table
Reference in a new issue