Added carriage return before prefix text

This commit is contained in:
Pranav Srinivas Kumar
2021-03-13 10:48:45 -06:00
parent 23b2364f2a
commit 4790bfddca
4 changed files with 6 additions and 6 deletions

View File

@@ -1845,7 +1845,7 @@ public:
const auto prefix_pair = get_prefix_text();
const auto prefix_text = prefix_pair.first;
const auto prefix_length = prefix_pair.second;
os << prefix_text;
os << "\r" << prefix_text;
os << get_value<details::ProgressBarOption::start>();
@@ -2136,7 +2136,7 @@ public:
const auto prefix_pair = get_prefix_text();
const auto prefix_text = prefix_pair.first;
const auto prefix_length = prefix_pair.second;
os << prefix_text;
os << "\r" << prefix_text;
os << get_value<details::ProgressBarOption::start>();
@@ -2371,7 +2371,7 @@ public:
const auto prefix_pair = get_prefix_text();
const auto prefix_text = prefix_pair.first;
const auto prefix_length = prefix_pair.second;
os << prefix_text;
os << "\r" << prefix_text;
os << get_value<details::ProgressBarOption::start>();