From 1572ef75bd1b2e5090cec0d20e29a62ba46841b9 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Thu, 28 Sep 2023 08:26:17 +0400 Subject: layout: Refresh windows too This will send output enter/leave to new popups. --- src/layout.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/layout.rs b/src/layout.rs index 7f8be762..6eae1146 100644 --- a/src/layout.rs +++ b/src/layout.rs @@ -1981,6 +1981,7 @@ impl Workspace { let active = self.active_column_idx == col_idx && col.active_window_idx == win_idx; win.set_activated(active); win.toplevel().send_pending_configure(); + win.refresh(); } } } -- cgit