1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-20 03:09:06 +03:00

partial revert of prior commit; it's not quite right

https://github.com/wez/wezterm/issues/408
This commit is contained in:
Wez Furlong 2021-03-26 13:52:39 -07:00
parent d827be990d
commit 0f23c140d1

View File

@ -172,9 +172,12 @@ impl super::TermWindow {
None => dims.physical_top..dims.physical_top + dims.viewport_rows as StableRowIndex,
};
/*
let (top, vp_lines) = pos
.pane
.get_lines_with_hyperlinks_applied(stable_range, &self.config.hyperlink_rules);
*/
let (top, vp_lines) = pos.pane.get_lines(stable_range);
stable_top = top;
lines = vp_lines;
}