Closed DBY047 closed 9 months ago
Sorry, I won't have time to look into this. Open to reviewing a PR if you figure out why this happens, though!
@djc Both issue are caused by GetConsoleScreenBufferInfo in console/mod.rs returning 0.
I found a fix here https://github.com/mintty/mintty/issues/1188#issuecomment-1333257062 that fixes both wide_bar not beeig wide and the printLn! not beeing printed as a new line.
Glad you were able to fix it!
I saw a similar behavior on a program I wrote. Whether I use finish or finish_and_clear, printLn! called after is printed on the same line as the progress bar. I saw the same behavior on fastbar example.
Rendering on Command Prompt:
Redering on git bash
Also, it looks like wide_bar is not handled the same way on all terminals. I can't find out what to change on my code or on git-bash configuration so wide_bar is rendered wide.
Thanks,