Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Actually keep the cursor on the right terminal side #356

Merged
merged 1 commit into from Jan 26, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/draw_target.rs
Expand Up @@ -399,7 +399,7 @@ impl ProgressDrawState {
// Keep the cursor on the right terminal side
// So that next user writes/prints will happen on the next line
let line_width = console::measure_text_width(line);
term.move_cursor_right(usize::from(term.size().1) - line_width)?;
term.write_str(&" ".repeat(usize::from(term.size().1) - line_width))?;
}
}
Ok(())
Expand Down