Fix indent rendering
I forgot that I used a box drawing character and not a '|' character to render the indent.
This commit is contained in:
parent
e707525240
commit
26b07d6c57
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ pub fn style_time_inverted() -> ContentStyle {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub const INDENT: &str = "│ ";
|
pub const INDENT: &str = "│ ";
|
||||||
pub const INDENT_WIDTH: usize = INDENT.len();
|
pub const INDENT_WIDTH: usize = 2;
|
||||||
|
|
||||||
pub fn style_indent() -> ContentStyle {
|
pub fn style_indent() -> ContentStyle {
|
||||||
ContentStyle::default().dark_grey()
|
ContentStyle::default().dark_grey()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue