1
0
Fork 0
forked from wry/wry

toplevel: store if ancestor is fullscreen

This commit is contained in:
Julian Orth 2025-07-19 22:26:57 +02:00
parent 0253f10dcc
commit a5e8b39e4f
3 changed files with 42 additions and 2 deletions

View file

@ -41,4 +41,7 @@ pub trait ContainingNode: Node {
fn cnode_get_float(self: Rc<Self>) -> Option<Rc<FloatNode>> {
None
}
fn cnode_self_or_ancestor_fullscreen(&self) -> bool {
false
}
}