From 9e6a801073ec54f24e633c1bcc982aabead3ed30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=89=E5=92=B2=E9=9B=85=20=C2=B7=20Misaki=20Masa?= Date: Fri, 20 Dec 2024 16:57:24 +0800 Subject: [PATCH] fix: missing a render after resuming from an external blocking process (#2071) --- 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 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!(); } }