Phanxfont stopped affecting the quest tracker

No errors, just a couple i had to change with the C_AddOns.GetAddOnMetadata, but once i fixed that i noticed it was not affecting the quest objectives tracker.

I think maybe a font name changed or the tracker is protected somehow?

I posted on pings fork, so maybe he will be able to address it.

fyi::

Some elements of the objective tracker have changed.

For instance what was:

hooksecurefunc(QUEST_TRACKER_MODULE,"OnBlockHeaderClick",self.OnClick)
hooksecurefunc(CAMPAIGN_QUEST_TRACKER_MODULE,"OnBlockHeaderClick",self.OnClick)

Could now be:

hooksecurefunc(QuestObjectiveTracker,"OnBlockHeaderClick",self.OnClick)
hooksecurefunc(CampaignQuestObjectiveTracker,"OnBlockHeaderClick",self.OnClick)

dang, i dont see any of those in either lua file :O(

only reference to quest is entries for quest_font and im pretty sure thats just quest text.

i could always post the lua files, they arent terribly large,lol

Well, the addon itself appears to be a single 372-line Lua file, but the addon also includes three libraries (PhanxConfig-Dropdown, PhanxConfig-MediaDropdown, and PhanxConfig-Slider), and a bug in those would have unpredictable results.

Ya and with no errors being thrown, amateurs like me are stuck sadly.

Though ping seems to have updated his fork 3 weeks ago so hopefully he’ll look at it.

Ill try and ask around too.

edit 8-14------
there was an update in the fork that fixes the issue