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