1
0
Fork 0
forked from wry/wry

toplevel: rename is_floating to parent_is_float

This commit is contained in:
Julian Orth 2025-07-16 21:21:24 +02:00
parent a840eff108
commit a333198658
5 changed files with 11 additions and 11 deletions

View file

@ -582,7 +582,7 @@ impl WlSeatGlobal {
pub fn get_floating(self: &Rc<Self>) -> Option<bool> {
match self.keyboard_node.get().node_toplevel() {
Some(tl) => Some(tl.tl_data().is_floating.get()),
Some(tl) => Some(tl.tl_data().parent_is_float.get()),
_ => None,
}
}