Fix runnables-related hickups (#8058)
* never error on absent/empty runnables file * always activate terminal tab on runnable (re)schedule Release Notes: - N/A
This commit is contained in:
parent
e9f400a8bd
commit
48a6fb9e84
2 changed files with 8 additions and 1 deletions
|
@ -542,6 +542,13 @@ impl TerminalPanel {
|
|||
terminal_to_replace.set_terminal(new_terminal, cx);
|
||||
});
|
||||
self.activate_terminal_view(terminal_item_index, cx);
|
||||
let task_workspace = self.workspace.clone();
|
||||
cx.spawn(|_, mut cx| async move {
|
||||
task_workspace
|
||||
.update(&mut cx, |workspace, cx| workspace.focus_panel::<Self>(cx))
|
||||
.ok()
|
||||
})
|
||||
.detach();
|
||||
Some(())
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue