1
0
Fork 0
forked from wry/wry

tree: fix toplevel float extent memoization

This commit is contained in:
Julian Orth 2024-02-19 22:58:58 +01:00
parent bd3872a4ef
commit 062bcb25ee
7 changed files with 14 additions and 20 deletions

View file

@ -369,12 +369,7 @@ impl WlSeatGlobal {
if old_ws.id == ws.id {
return;
}
let cn = match tl
.tl_data()
.parent
.get()
.and_then(|p| p.node_into_containing_node())
{
let cn = match tl.tl_data().parent.get() {
Some(cn) => cn,
_ => return,
};