1 Commits

Author SHA1 Message Date
16f7e7466a Bug Fix 2026-01-23 14:58:18 -06:00

View File

@@ -228,7 +228,7 @@ func (w *SimpleList) MinW() int {
func (w *SimpleList) MinH() int { return 4 }
func (w *SimpleList) getItemAt(idx int) {
for idx >= len(w.List) {
for idx >= len(w.list) {
idx--
}