From 9c64650a26cf03207f93c9eeddbafb12edccbf6e Mon Sep 17 00:00:00 2001 From: Dmitry Sharshakov Date: Thu, 2 Sep 2021 22:51:41 +0300 Subject: [PATCH] force update of stack trace when stopped --- helix-term/src/application.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index 9e22e52be..e64389ed7 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 {