aboutsummaryrefslogtreecommitdiffstats
path: root/src/screen.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/screen.rs')
-rw-r--r--src/screen.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screen.rs b/src/screen.rs
index afe50b8..7141c07 100644
--- a/src/screen.rs
+++ b/src/screen.rs
@@ -164,7 +164,7 @@ impl Screen {
) -> impl Iterator<Item = String> + '_ {
self.grid().visible_rows().map(move |row| {
let mut contents = String::new();
- row.write_contents(&mut contents, start, width);
+ row.write_contents(&mut contents, start, width, false);
contents
})
}