added cursor text back

This commit is contained in:
Mikayla Maki 2022-07-21 10:04:12 -07:00
parent ee87c8ebde
commit 7c0a031506
3 changed files with 11 additions and 10 deletions

View file

@ -57,7 +57,7 @@ impl<'a> TerminalTestContext<'a> {
}
fn grid_as_str(connection: &Terminal) -> String {
connection.render_lock(None, |content| {
connection.render_lock(None, |content, _| {
let lines = content.display_iter.group_by(|i| i.point.line.0);
lines
.into_iter()