fix: missing a render after resuming from an external blocking process (#2071)

This commit is contained in:
三咲雅 · Misaki Masa 2024-12-20 16:57:24 +08:00 committed by GitHub
parent 8800bae0aa
commit 9e6a801073
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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