aboutsummaryrefslogtreecommitdiffstats
path: root/src/row.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-11-05 10:49:18 -0500
committerJesse Luehrs <doy@tozt.net>2019-11-05 10:51:02 -0500
commitb7359e5513e6102c293d51f0fbdabfccc3fe6450 (patch)
treeaf97d52da22a9061c7a7f26ebdbc4e01a3bc8fda /src/row.rs
parent665238f5318bee40f254fe43aa158e61bdd25392 (diff)
downloadvt100-rust-b7359e5513e6102c293d51f0fbdabfccc3fe6450.tar.gz
vt100-rust-b7359e5513e6102c293d51f0fbdabfccc3fe6450.zip
preserve the state of empty cells in contents_formatted
Diffstat (limited to 'src/row.rs')
-rw-r--r--src/row.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/row.rs b/src/row.rs
index 4246d33..cf668ce 100644
--- a/src/row.rs
+++ b/src/row.rs
@@ -112,7 +112,7 @@ impl Row {
let cell_contents = cell.contents();
let cell_contents = if cell_contents == "" {
- " "
+ "\x1b[C"
} else {
cell_contents
};