From 16f7e7466ae451df7dfcfe7abd76854a32baafa6 Mon Sep 17 00:00:00 2001 From: Brian Buller Date: Fri, 23 Jan 2026 14:58:18 -0600 Subject: [PATCH] Bug Fix --- wdgt_simple_list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wdgt_simple_list.go b/wdgt_simple_list.go index 22ea14f..16bf06e 100644 --- a/wdgt_simple_list.go +++ b/wdgt_simple_list.go @@ -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-- }