1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-01 10:52:24 +01:00

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

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,
};
}