From 3781c8ea4123b65a9cb2f451801cdfeb07809583 Mon Sep 17 00:00:00 2001 From: LGUG2Z Date: Mon, 2 Dec 2024 16:35:09 -0800 Subject: [PATCH] fix(borders): update on resuming from suspend This commit is a small fix to ensure that the new Direct2D borders get redrawn properly after the operating system resumes from a suspended state. --- komorebi/src/monitor_reconciliator/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/komorebi/src/monitor_reconciliator/mod.rs b/komorebi/src/monitor_reconciliator/mod.rs index b15b452f..d91f211f 100644 --- a/komorebi/src/monitor_reconciliator/mod.rs +++ b/komorebi/src/monitor_reconciliator/mod.rs @@ -132,6 +132,7 @@ pub fn handle_notifications(wm: Arc>) -> color_eyre::Result ); ACTIVE.store(true, Ordering::SeqCst); + border_manager::send_notification(None); } continue 'receiver;