tiling: Sort tiling hints below windows

This commit is contained in:
Victoria Brekenfeld 2023-05-26 20:52:26 +02:00
parent b9fff052db
commit 954843bc43

View file

@ -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)
}
}