aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/application.rs
diff options
context:
space:
mode:
authorDmitry Sharshakov2021-09-02 19:51:41 +0000
committerDmitry Sharshakov2021-09-02 19:51:41 +0000
commit9c64650a26cf03207f93c9eeddbafb12edccbf6e (patch)
treeed5faa1e9d9ef730aaaa94928e76b896af5bf093 /helix-term/src/application.rs
parent2c8910734976059d6921e4a7d6d3d2b16e3a7b00 (diff)
force update of stack trace when stopped
Diffstat (limited to 'helix-term/src/application.rs')
-rw-r--r--helix-term/src/application.rs4
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 {