1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-19 18:57:59 +03:00

ensure lines are marked dirty when rewrapping

refs: https://github.com/wez/wezterm/issues/574
This commit is contained in:
Wez Furlong 2021-03-25 16:02:27 -07:00
parent dc4676047e
commit 1a7d3828fd

View File

@ -93,6 +93,7 @@ impl Screen {
for (phys_idx, mut line) in self.lines.drain(..).enumerate() {
line.invalidate_implicit_hyperlinks();
line.set_dirty();
let was_wrapped = line.last_cell_was_wrapped();
if was_wrapped {