diff options
author | Dmitry Sharshakov | 2021-09-02 19:51:41 +0000 |
---|---|---|
committer | Dmitry Sharshakov | 2021-09-02 19:51:41 +0000 |
commit | 9c64650a26cf03207f93c9eeddbafb12edccbf6e (patch) | |
tree | ed5faa1e9d9ef730aaaa94928e76b896af5bf093 | |
parent | 2c8910734976059d6921e4a7d6d3d2b16e3a7b00 (diff) |
force update of stack trace when stopped
-rw-r--r-- | helix-term/src/application.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index 9e22e52b..e64389ed 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -287,10 +287,10 @@ impl Application { main.map(|t| t.id) }); if let Some(id) = main { - select_thread_id(&mut self.editor, id, false).await; + select_thread_id(&mut self.editor, id, true).await; } } else { - select_thread_id(&mut self.editor, thread_id.unwrap(), false).await; + select_thread_id(&mut self.editor, thread_id.unwrap(), true).await; } let scope = match thread_id { |