1
0
Fork 0
forked from wry/wry

Merge pull request #103 from mahkoh/jorth/fix-tl-change-extents

tree: damage screen after toggling fullscreen
This commit is contained in:
mahkoh 2024-02-22 19:22:31 +01:00 committed by GitHub
commit aa9ca29996
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -394,6 +394,7 @@ impl ToplevelData {
.tl_into_node()
.node_do_focus(&seat, Direction::Unspecified);
}
state.damage();
}
pub fn unset_fullscreen(&self, state: &Rc<State>, node: Rc<dyn ToplevelNode>) {
@ -438,6 +439,7 @@ impl ToplevelData {
fd.placeholder
.node_seat_state()
.destroy_node(fd.placeholder.deref());
state.damage();
}
pub fn set_visible(&self, node: &dyn Node, visible: bool) {