You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
When using Progress, Spectre enforces a linebreak before and after the progress bar. This gets quite annoying if we use 2 separate progress bars after each other since that will include 2 empty linebreaks between the progress bars.
I do not know if there is a technical requirement for forcing these linebreaks. But i would much prefer to just add a linebreak if neccessary myself.
Describe the solution you'd like
Some kind option for disabling forced linebreaks around progress bars.
Describe alternatives you've considered
If we need two separate progress bars after eachother, i have resolved to using AnsiConsole.Cursor.Move(CursorDirection.Up, 1) after the first progress bar in order to remove the duplicate linebreak.
Additional context
Please upvote 👍 this issue if you are interested in it.
The text was updated successfully, but these errors were encountered:
I took your example, duplicated the Progress bar, and removed renderhooks and log messages to clarify the issue:
There are double linebreaks between the 2 Progress bars.
These linebreaks are forced, which can make it quite annoying to properly fit in the Progress bar in dynamic applications where you cant always predict whats is triggered and when.
I would very much like some kind of control over them.
Is your feature request related to a problem? Please describe.
When using
Progress
, Spectre enforces a linebreak before and after the progress bar. This gets quite annoying if we use 2 separate progress bars after each other since that will include 2 empty linebreaks between the progress bars.I do not know if there is a technical requirement for forcing these linebreaks. But i would much prefer to just add a linebreak if neccessary myself.
Describe the solution you'd like
Some kind option for disabling forced linebreaks around progress bars.
Describe alternatives you've considered
If we need two separate progress bars after eachother, i have resolved to using
AnsiConsole.Cursor.Move(CursorDirection.Up, 1)
after the first progress bar in order to remove the duplicate linebreak.Additional context
Please upvote 👍 this issue if you are interested in it.
The text was updated successfully, but these errors were encountered: