Hide stack pointer when continued

This commit is contained in:
Dmitry Sharshakov 2021-08-21 21:00:18 +03:00
parent f3e47bfee4
commit 95ba4ff5bd
No known key found for this signature in database
GPG Key ID: 471FD32E15FD8473

View File

@ -4344,6 +4344,7 @@ fn dap_continue(cx: &mut Context) {
let request = debugger.continue_thread(0);
let _ = block_on(request).unwrap();
debugger.is_running = true;
debugger.stack_pointer = None;
}
}