Clear monitor on page change

This commit is contained in:
Gabriel Tofvesson 2024-10-08 18:17:54 +02:00
parent b6597650af
commit 10ea229fbf

View File

@ -162,7 +162,7 @@ local function itemList(groups, wBudget, hBudget, savedState, onClick, setPage)
end
local tabLinePad = Padding:new{
top = hBudget - (entryEnd - entryStart) - 1,
top = hBudget - (entryEnd - entryStart),
element = tabLine
}
@ -183,7 +183,7 @@ local function updatePageRender(state, pages)
if changingPage then
state.pageState = nil
end
state.monitor.clear()
state._pageRender = pages[state.currentPage](state)
end
end