aboutsummaryrefslogtreecommitdiff
path: root/libtui/widget/list
AgeCommit message (Collapse)Author
2023-09-07list: Fix bottom moving frame when items are smaller than tty rowsJulian Hurst
This only sets rows to tty rows - 1 if len(list.items) is bigger otherwise we set rows to len(list.items)
2023-09-07Fix list row sizeJulian Hurst
2023-09-07Update hare-set and use sset for listwidgetJulian Hurst
2023-09-07Fix intermittent blanking/flickeringJulian Hurst
Clearing and printing were done in two separate write syscalls. This fix consists in grouping them in the same write syscall by scheduling a clear in advance. This prevents UI glitches due to the delay between both writes.
2023-09-07Update list::selected commentJulian Hurst
2023-09-07Specify borrowing in list::selected commentJulian Hurst
2023-09-07Update list::selected commentJulian Hurst
2023-09-07Initial commitJulian Hurst