Skip to content

Commit 3e61ef3

Browse files
committedMay 10, 2024
real time format corrected
1 parent 897d0fb commit 3e61ef3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎source/Base/StringHelper.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ std::string StringHelper::format(std::chrono::milliseconds duration)
7070
oss << std::setw(2) << std::setfill('0') << minutes.count() << ":";
7171
}
7272
if (seconds.count() > 0 || minutes.count() > 0 || hours.count() > 0 || days.count() > 0 || months.count() > 0) {
73-
oss << std::setw(2) << std::setfill('0') << seconds.count() << ":";
73+
oss << std::setw(2) << std::setfill('0') << seconds.count() << ".";
7474
}
7575
oss << std::setw(3) << std::setfill('0') << duration.count();
7676

0 commit comments

Comments
 (0)
Please sign in to comment.