debugger: Add an action to rerun the last session (#31442)
This works the same as selecting the first history match in the new session modal. Release Notes: - Debugger Beta: Added the `debugger: rerun last session` action, bound by default to `alt-f4`.
This commit is contained in:
parent
092be31b2b
commit
03071a9152
5 changed files with 58 additions and 1 deletions
|
@ -230,6 +230,10 @@ impl Inventory {
|
|||
}
|
||||
}
|
||||
|
||||
pub fn last_scheduled_scenario(&self) -> Option<&DebugScenario> {
|
||||
self.last_scheduled_scenarios.back()
|
||||
}
|
||||
|
||||
pub fn list_debug_scenarios(
|
||||
&self,
|
||||
task_contexts: &TaskContexts,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue