mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Enable the 'Resume With Signal' action only if target is suspended.
This commit is contained in:
parent
227c0f8ca8
commit
b540f30b41
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ public class SignalActionDelegate implements IObjectActionDelegate
|
|||
|
||||
private boolean enablesFor( ICSignal signal )
|
||||
{
|
||||
return ( signal != null );
|
||||
return ( signal != null && signal.getDebugTarget().isSuspended() );
|
||||
}
|
||||
|
||||
private void setSignal( ICSignal signal )
|
||||
|
|
Loading…
Add table
Reference in a new issue