toplevel: rename is_floating to parent_is_float
This commit is contained in:
parent
a840eff108
commit
a333198658
5 changed files with 11 additions and 11 deletions
|
|
@ -197,7 +197,7 @@ impl JayTreeQuery {
|
|||
}
|
||||
}
|
||||
}
|
||||
if data.is_floating.get() {
|
||||
if data.parent_is_float.get() {
|
||||
self.client.event(Floating { self_id: self.id });
|
||||
}
|
||||
if data.visible.get() {
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue