Peter J. Schroeder
Peter J. Schroeder
Yes, the README considers that, but that actual code does not. Is this something you would accept if I can get it working?
The functions above work almost perfectly for this. Some additional math is required when text and frames are involved tho. When using ax for a widget width, it would be...
Automatic resizing would be a great addition. This is a pretty common feature in TUIs/GUIs. Right now in my code, I am dividing all widgets coordinates by the screen width/height....
Tested and it works.  If #13 can be worked out, the choices can be easily looped through and stored before recreating and than set back to their original settings.
Sorry, I figured this was the right place for it because it is window resizing. Just the initial resize, not after application launch. I'll open a separate issue.
Here is my semi-working version of sixel support. It only seems to work correctly when the terminal is full screen. I believe it may have something to do with using...
As far as I know, it would have to be on a case by case basis. if "mlterm" in os.environ['TERM'] or "xterm" in os.environ['TERM']: I would have it fallback to...
Nice, I hadn't seen the ImageFile function. A universal Image function would make it easy for the user. In this Image function, it could check for sixel compatible terminals. If...
I used textbox for the reserved space, but a dedicated widget for images would be preferable. Is _w and _h suppose to store the current width and height of the...
It actually tries to draw it before it starts, but that is most likely a simple fix as it didn't do it before I started adjusting some things. Attached is...