diff options
author | Wojciech Kępka | 2021-06-21 08:14:50 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-06-21 09:51:04 +0000 |
commit | ee80fa8ea999ff88a0ac473d56eaa63dcbbc6d4e (patch) | |
tree | 7025dfefdc5c93426b82d3c15db413a3420eabd2 /helix-term/src | |
parent | aca9d73fe400e5147f27995374794781c1c49079 (diff) |
Cleanup spinners and messages on progress end
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/application.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index ea29f6f1..f06ccff2 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -328,6 +328,9 @@ impl Application { editor_view.spinners_mut().get_or_create(server_id).stop(); } self.editor.clear_status(); + + // we want to render to clear any leftover spinners or messages + self.render(); return; } } |