1
0
Fork 0
forked from wry/wry

autocommit 2022-04-23 00:55:20 CEST

This commit is contained in:
Julian Orth 2022-04-23 00:55:20 +02:00
parent 436f383cd6
commit e3b3d848c3
32 changed files with 1773 additions and 2451 deletions

View file

@ -64,7 +64,7 @@ impl KbOwner for DefaultKbOwner {
if old.node_is_xwayland_surface() && !node.node_is_xwayland_surface() {
seat.state.xwayland.queue.push(XWaylandEvent::ActivateRoot);
}
old.node_unfocus(seat);
old.node_on_unfocus(seat);
if old.node_seat_state().unfocus(seat) {
old.node_active_changed(false);
}
@ -73,7 +73,7 @@ impl KbOwner for DefaultKbOwner {
node.node_active_changed(true);
}
// log::info!("focus {}", node.node_id());
node.clone().node_focus(seat);
node.clone().node_on_focus(seat);
seat.keyboard_node.set(node.clone());
}
}