From 08122f1f7e355fce293b78704a779f7f16c6cf2f Mon Sep 17 00:00:00 2001 From: Benedikt Ziemons Date: Tue, 4 Jun 2024 00:14:13 +0200 Subject: [PATCH] Fix self.self typo --- listview.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/listview.lua b/listview.lua index 4699aba..821adaf 100644 --- a/listview.lua +++ b/listview.lua @@ -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