summaryrefslogtreecommitdiffstats
path: root/src/column.rs
diff options
context:
space:
mode:
authornwin <nwin@users.noreply.github.com>2015-02-23 00:08:44 +0100
committernwin <nwin@users.noreply.github.com>2015-02-23 00:08:44 +0100
commitbeaf8789ce1c9b1cfaeb38f27b728fc96b88b80b (patch)
tree670b33cc5313a47ddf4c1ed37eaccb561fa2f543 /src/column.rs
parent0082563e47bfdb7099011012e6243c24152df554 (diff)
true -> false
Diffstat (limited to 'src/column.rs')
-rw-r--r--src/column.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/column.rs b/src/column.rs
index e6d07e6..10aea4c 100644
--- a/src/column.rs
+++ b/src/column.rs
@@ -86,7 +86,7 @@ impl Cell {
pub fn paint(style: Style, string: &str) -> Cell {
Cell {
text: style.paint(string).to_string(),
- length: string.width(true),
+ length: string.width(false),
}
}
}