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

@@ -246,7 +246,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>();

View File

@@ -194,7 +194,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>();

View File

@@ -312,7 +312,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>();