gcla / gowid

Compositional widgets for terminal user interfaces, written in Go, inspired by urwid.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Debug info prints when resizing terminal window

r-smith opened this issue · comments

While resizing a terminal window on Linux, debug info is printing on the bottom of the window. It seems like 75% of the time the debug info stays printed after the resize is done. This doesn't happen on Windows.

resize

Hi, thanks for the report. A few quick questions about your application and its environment - could you check the gowid against which you're building includes this commit?

7bbacb2

Unless a log argument is provided to NewApp, the default is now to log to a file named after the application instead of the tty. I think in hindsight having the tty be the default was silly for a tui framework :-/

If you have that, could you let me know the terminal program and value of TERM?

Thanks

Yeah, it looks like I forgot to update this system. The issue is fixed by that commit. Thanks!