Fix off-by-one error with text wrapping and --style grid

This commit is contained in:
eth-p 2018-05-12 12:07:41 -07:00
parent bdd10b8bec
commit f95a23f948
No known key found for this signature in database
GPG Key ID: 1F8DF8091CD46FBC
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ impl<'a> Printer<'a> {
fn gen_border(&self) -> PrintSegment {
return PrintSegment {
text: self.colors.grid.paint("").to_string(),
size: 2,
size: 1,
};
}