We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c21346 commit b4ca4a4Copy full SHA for b4ca4a4
src/core/utils/display/mod.rs
@@ -206,7 +206,9 @@ pub fn draw_append_text(
206
if num_appendable >= 1 {
207
crossterm::execute!(out, crossterm::terminal::Clear(ClearType::CurrentLine))?;
208
}
209
- write!(out, "{}", fmt_text[0..num_appendable].join("\n\r"))?;
+ for line in fmt_text.iter() {
210
+ write!(out, "{}\n\r", line)?;
211
+ }
212
out.flush()?;
213
214
Ok(())
0 commit comments