diff --git a/src/main/java/com/gregor/jprototerm/Tab.java b/src/main/java/com/gregor/jprototerm/Tab.java index adc15f5..793ff4b 100644 --- a/src/main/java/com/gregor/jprototerm/Tab.java +++ b/src/main/java/com/gregor/jprototerm/Tab.java @@ -286,6 +286,9 @@ final class Tab implements AutoCloseable { lastFocusedFloating = pane; } else if (tiled.contains(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; } }