diff --git a/yazi-fm/src/app/commands/resume.rs b/yazi-fm/src/app/commands/resume.rs index f6c37e55d..93e0a694e 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!(); } }