The multiline progress bar would not clear itself before writing to stdout, leading to interference with the redraw; the most visible symptom is after building in the repl, where the lines indicating the build outputs would be wiped instead of the progress bar header. Separate the steps of erasing and redrawing the progress bar, so that arbitrary output can happen in between in a non-awkward way. In addition to fixing the bug, the code is simplified. Change-Id: I142cf38f5ba5cd672cd6016e996b2f7bf726e9cd
494 B
494 B
synopsis, category, cls, credits
| synopsis | category | cls | credits | ||
|---|---|---|---|---|---|
| Fix interference of the multiline progress bar with output | Fixes |
|
|
In some situations, the progress indicator of the multiline progress bar would interfere with persistent output.
This would result in progress bar headers being visible in place of the desired text, for example the outputs shown after a :b command in the repl.
The underlying ordering issue has been fixed, so that the undesired interference does not happen any more.