fix: missing a render after resuming from an external blocking process

This commit is contained in:
sxyazi 2024-12-20 16:53:57 +08:00
parent 635bb4be55
commit 87ec62caf2
No known key found for this signature in database

View file

@ -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!();
}
}