1
0
Fork 0
forked from wry/wry

add directional focus navigation for floating windows

Map left/down to previous and right/up to next in the workspace
stacking order, with wrapping. Does not cross to the tiled layer.
This commit is contained in:
atagen 2026-03-07 19:03:12 +11:00 committed by kossLAN
parent d353779c10
commit 9bd7e14b08
No known key found for this signature in database
3 changed files with 40 additions and 1 deletions

View file

@ -483,6 +483,9 @@ impl FloatNode {
fn update_child_active(self: &Rc<Self>, active: bool) {
if self.active.replace(active) != active {
self.schedule_render_titles();
if active {
self.restack();
}
}
}