Fix Pager::print_string() with empty string

sql
Manos Pitsidianakis 2019-11-11 00:48:42 +02:00
parent 5761f854e2
commit 776dc107c2
Signed by: Manos Pitsidianakis
GPG Key ID: 73627C2F690DF710
1 changed files with 1 additions and 3 deletions

View File

@ -323,7 +323,6 @@ impl Pager {
) -> Self {
let pager_filter: Option<&String> = if let Some(context) = context {
context.settings.pager.filter.as_ref()
//let format_flowed: bool = context.settings.pager.format_flowed;
} else {
None
};
@ -366,7 +365,6 @@ impl Pager {
} else {
CellBuffer::new(width, height, Cell::with_char(' '))
};
//interpret_format_flowed(&text);
Pager::print_string(&mut content, lines);
content
};
@ -426,7 +424,7 @@ impl Pager {
Color::Default,
Color::Default,
Attr::Default,
((0, i), (width - 1, i)),
((0, i), (width.saturating_sub(1), i)),
true,
);
}