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:
Joscha 2022-07-19 21:52:07 +02:00
parent e707525240
commit 26b07d6c57

View file

@ -17,7 +17,7 @@ pub fn style_time_inverted() -> ContentStyle {
}
pub const INDENT: &str = "";
pub const INDENT_WIDTH: usize = INDENT.len();
pub const INDENT_WIDTH: usize = 2;
pub fn style_indent() -> ContentStyle {
ContentStyle::default().dark_grey()