File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
src/client/datascience/interactive-ipynb Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change
1
+ Fix debugger continue event to actually change a cell.
Original file line number Diff line number Diff line change @@ -105,18 +105,18 @@ export class NativeEditorRunByLineListener
105
105
106
106
private async handleStep ( ) {
107
107
// User issued a step command.
108
- this . postEmitter . fire ( { message : InteractiveWindowMessages . ShowContinue , payload : undefined } ) ;
108
+ this . postEmitter . fire ( { message : InteractiveWindowMessages . ShowContinue , payload : this . currentCellBeingRun } ) ;
109
109
return this . debugService . step ( ) ;
110
110
}
111
111
112
112
private async handleContinue ( ) {
113
113
// User issued a continue command
114
- this . postEmitter . fire ( { message : InteractiveWindowMessages . ShowContinue , payload : undefined } ) ;
114
+ this . postEmitter . fire ( { message : InteractiveWindowMessages . ShowContinue , payload : this . currentCellBeingRun } ) ;
115
115
return this . debugService . continue ( ) ;
116
116
}
117
117
118
118
private async handleContinueEvent ( ) {
119
119
// Tell the ui to erase the current IP
120
- this . postEmitter . fire ( { message : InteractiveWindowMessages . ShowContinue , payload : undefined } ) ;
120
+ this . postEmitter . fire ( { message : InteractiveWindowMessages . ShowContinue , payload : this . currentCellBeingRun } ) ;
121
121
}
122
122
}
You can’t perform that action at this time.
0 commit comments