From 954843bc432c2e15ecd7e826b8c2d041cd0ee1c3 Mon Sep 17 00:00:00 2001 From: Victoria Brekenfeld Date: Fri, 26 May 2023 20:52:26 +0200 Subject: [PATCH] tiling: Sort tiling hints below windows --- src/shell/layout/tiling/mod.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/shell/layout/tiling/mod.rs b/src/shell/layout/tiling/mod.rs index 976ed2e3..3040859d 100644 --- a/src/shell/layout/tiling/mod.rs +++ b/src/shell/layout/tiling/mod.rs @@ -1619,11 +1619,6 @@ impl TilingLayout { } .unzip(); - // tiling hints - if let Some(group_elements) = group_elements { - elements.extend(group_elements); - } - // all alive windows elements.extend(render_new_tree( target_tree, @@ -1646,6 +1641,11 @@ impl TilingLayout { }, )); + // tiling hints + if let Some(group_elements) = group_elements { + elements.extend(group_elements); + } + Ok(elements) } }