mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-15 04:05:38 +02:00
Fixed 'Step Into' for stack frame.
This commit is contained in:
parent
3da18a28f5
commit
a5e7b14cc5
1 changed files with 1 additions and 1 deletions
|
@ -309,7 +309,7 @@ public class CStackFrame extends CDebugElement
|
|||
*/
|
||||
public void stepInto() throws DebugException
|
||||
{
|
||||
if ( !canStepInto() )
|
||||
if ( canStepInto() )
|
||||
{
|
||||
getThread().stepInto();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue