when tiling pane gains focus hide floating panes

This commit is contained in:
2026-06-01 17:44:15 +02:00
parent 64d86fe487
commit 4ed2b82f2f

View File

@@ -286,6 +286,9 @@ final class Tab implements AutoCloseable {
lastFocusedFloating = pane; lastFocusedFloating = pane;
} else if (tiled.contains(pane)) { } else if (tiled.contains(pane)) {
lastFocusedTiled = pane; lastFocusedTiled = pane;
// A tiled pane gaining focus hides the floating group: leaving it shown while a tiled
// pane is active strands focus behind the overlay and disables navigation.
floatingVisible = false;
} }
} }