Fix self.self typo

This commit is contained in:
Ben 2024-06-04 00:14:13 +02:00
parent 20bdf46ea4
commit 08122f1f7e
Signed by: ben
GPG key ID: 1353F41CF1CFF2D3

View file

@ -85,7 +85,7 @@ function ListView:updatePartial(filter)
for idx = 1, th, 1 do
self.frame.setCursorPos(1, idx)
if self.backingList[backingIdx] ~= nil and filter(self.backingList[backingIdx]) then
self.self.drawEntry(self.self.frame, self.backingList[backingIdx])
self.drawEntry(self.frame, self.backingList[backingIdx])
end
backingIdx = backingIdx + 1
end