Skip to content

Commit

Permalink
Fix for tab level overlays being hidden by floating pane.
Browse files Browse the repository at this point in the history
  • Loading branch information
e82eric committed Oct 18, 2024
1 parent 0f4010d commit ad6439d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions wezterm-gui/src/termwindow/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3535,6 +3535,15 @@ impl TermWindow {
None => return None,
};

if self
.tab_state(tab.tab_id())
.overlay
.as_ref()
.map(|overlay| overlay.pane.clone())
{
return None;
}

if !tab.floating_pane_is_visible() {
return None;
}
Expand Down

0 comments on commit ad6439d

Please sign in to comment.