Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions frontends/rioterm/src/application.rs
Original file line number Diff line number Diff line change
Expand Up @@ -668,6 +668,14 @@ impl ApplicationHandler<EventPayload> for Application<'_> {
} else {
let size = route.window.screen.context_manager.len();
route.window.screen.resize_top_or_bottom_line(size);
// Force a repaint of the post-close state. The PTY
// thread also queues a separate Render, but if that is
// processed before this CloseTerminal (or coalesced),
// the closed tab lingers on screen until some later
// event — looking "frozen" until you click another
// tab. mark_dirty + redraw makes the close show now.
route.window.screen.mark_dirty();
route.request_redraw();
}
}
}
Expand Down
Loading