editor: mark target as running when continued
This commit is contained in:
parent
d93cd2a261
commit
be9dc5802a
1 changed files with 7 additions and 0 deletions
|
@ -324,6 +324,13 @@ impl Application {
|
|||
self.editor
|
||||
.set_status("Debugged application started".to_owned());
|
||||
}
|
||||
Event::Continued(_) => {
|
||||
if let Some(debugger) = self.editor.debugger.as_mut() {
|
||||
debugger.stopped_thread = None;
|
||||
debugger.stack_pointer = None;
|
||||
debugger.is_running = true;
|
||||
}
|
||||
}
|
||||
ev => {
|
||||
log::warn!("Unhandled event {:?}", ev);
|
||||
return; // return early to skip render
|
||||
|
|
Loading…
Reference in a new issue