From ed129c1c3d9da7d6a343eb2bd1f5d8f7b90463a8 Mon Sep 17 00:00:00 2001 From: Julian Orth Date: Wed, 21 Feb 2024 14:23:23 +0100 Subject: [PATCH] tree: damage screen when parent is focused --- src/ifs/wl_seat.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ifs/wl_seat.rs b/src/ifs/wl_seat.rs index 3219007d..0731aa01 100644 --- a/src/ifs/wl_seat.rs +++ b/src/ifs/wl_seat.rs @@ -584,6 +584,7 @@ impl WlSeatGlobal { if let Some(parent) = tl.tl_data().parent.get() { if let Some(tl) = parent.node_toplevel() { self.focus_node(tl.tl_into_node()); + self.state.damage(); } } }