From 3f7f199cb940c8d5f6d48f77fd59971adffe49ef Mon Sep 17 00:00:00 2001 From: jacqueline Date: Thu, 7 Dec 2023 16:57:05 +1100 Subject: Remove pre-iterator concepts - No more IndexRecord/Result/dbGetPage nonsense - Queue is just track ids - i am so tired and have so much to do --- lua/main_menu.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lua/main_menu.lua') diff --git a/lua/main_menu.lua b/lua/main_menu.lua index c2d052a3..32386266 100644 --- a/lua/main_menu.lua +++ b/lua/main_menu.lua @@ -34,7 +34,7 @@ return function() end) local indexes = database.indexes() - for id, idx in ipairs(indexes) do + for _, idx in ipairs(indexes) do local btn = menu.list:add_btn(nil, tostring(idx)) btn:onClicked(function() backstack.push(function() -- cgit v1.2.3