aboutsummaryrefslogtreecommitdiffstats
path: root/src/cell.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cell.rs')
-rw-r--r--src/cell.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cell.rs b/src/cell.rs
index 7262c8d..857c9e2 100644
--- a/src/cell.rs
+++ b/src/cell.rs
@@ -36,7 +36,7 @@ impl Cell {
// strings in this context should always be an arbitrary character
// followed by zero or more zero-width characters, so we should only
// have to look at the first character
- self.set_wide(c.width().unwrap_or(0) > 1);
+ self.set_wide(c.width().unwrap_or(1) > 1);
self.attrs = a;
}