mirror of
https://github.com/wez/wezterm.git
synced 2024-12-24 13:52:55 +03:00
mux: don't request lines if we think we are dead
refs: https://github.com/wez/wezterm/issues/3386
This commit is contained in:
parent
29d10946aa
commit
72410a266f
@ -490,7 +490,7 @@ impl RenderableInner {
|
||||
}
|
||||
|
||||
fn schedule_fetch_lines(&mut self, to_fetch: RangeSet<StableRowIndex>, now: Instant) {
|
||||
if to_fetch.is_empty() {
|
||||
if to_fetch.is_empty() || self.dead {
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user