Skip to content

Commit ec72dad

Browse files
authored
Merge pull request #4 from desmondw/dw/fix/enumerate-self-ref
fix: missing 'self' reference
2 parents 637966f + 111313d commit ec72dad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ function DialogKey:EnumerateGossips()
507507
if QuestFrameGreetingPanel and QuestFrameGreetingPanel.titleButtonPool then
508508
--- @type FramePool<Button, QuestTitleButtonTemplate>
509509
local pool = QuestFrameGreetingPanel.titleButtonPool;
510-
for tab in (pool.EnumerateActive()) do
510+
for tab in (pool:EnumerateActive()) do
511511
if tab:GetObjectType() == "Button" then
512512
table.insert(self.frames, tab)
513513
end

0 commit comments

Comments
 (0)