Remove red-clearing for debugging

This commit is contained in:
Ben 2024-06-02 03:26:35 +02:00
parent 6ec60f8e1c
commit 3269df63d6
Signed by: ben
GPG key ID: 0F54A7ED232D3319

View file

@ -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