aboutsummaryrefslogtreecommitdiffstats
path: root/src/grid.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/grid.rs')
-rw-r--r--src/grid.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/grid.rs b/src/grid.rs
index b29668f..07bcd6f 100644
--- a/src/grid.rs
+++ b/src/grid.rs
@@ -183,11 +183,13 @@ impl Grid {
}
pub fn write_contents(&self, contents: &mut String) {
+ let mut wrapping = false;
for row in self.visible_rows() {
- row.write_contents(contents, 0, self.size.cols);
+ row.write_contents(contents, 0, self.size.cols, wrapping);
if !row.wrapped() {
contents.push_str("\n");
}
+ wrapping = row.wrapped();
}
while contents.ends_with('\n') {