From 3269df63d6d932fce718aa934051c3d2ebb4a8f7 Mon Sep 17 00:00:00 2001 From: Benedikt Ziemons Date: Sun, 2 Jun 2024 03:26:35 +0200 Subject: [PATCH] Remove red-clearing for debugging --- listview.lua | 3 --- 1 file changed, 3 deletions(-) diff --git a/listview.lua b/listview.lua index dc38fe8..e0f40fc 100644 --- a/listview.lua +++ b/listview.lua @@ -16,9 +16,6 @@ local function redrawLine(idx) local tw, th = frame.getSize() if idx >= paginationOffset and idx-paginationOffset <= th then frame.setCursorPos(1, idx-paginationOffset+1) - frame.setBackgroundColor(colors.red) - frame.clearLine() - frame.setBackgroundColor(colors.black) if drawLine then drawLine(frame, backingList[idx]) end