From 87ec62caf2117652e94c209b0d0b2fbcb147a9aa Mon Sep 17 00:00:00 2001 From: sxyazi Date: Fri, 20 Dec 2024 16:53:57 +0800 Subject: [PATCH] fix: missing a render after resuming from an external blocking process --- yazi-fm/src/app/commands/resume.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/yazi-fm/src/app/commands/resume.rs b/yazi-fm/src/app/commands/resume.rs index f6c37e55..93e0a694 100644 --- a/yazi-fm/src/app/commands/resume.rs +++ b/yazi-fm/src/app/commands/resume.rs @@ -1,3 +1,4 @@ +use yazi_macro::render; use yazi_shared::event::CmdCow; use crate::{Term, app::App}; @@ -12,5 +13,7 @@ impl App { self.resize(()); self.signals.resume(None); + + render!(); } }