From 29cf60cff92fac3d709ad048fdb4209ee897f569 Mon Sep 17 00:00:00 2001 From: Darthpred Date: Fri, 16 Sep 2016 18:53:08 +0300 Subject: [PATCH] Fix text issues with quest log --- ElvUI_SLE/modules/quests/quests.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ElvUI_SLE/modules/quests/quests.lua b/ElvUI_SLE/modules/quests/quests.lua index fd1d512..8605820 100644 --- a/ElvUI_SLE/modules/quests/quests.lua +++ b/ElvUI_SLE/modules/quests/quests.lua @@ -7,10 +7,14 @@ local IsResting = IsResting local statedriver = { ["FULL"] = function(frame) ObjectiveTracker_Expand() + -- TextFix(minimizeButton, "full") + minimizeButton.text:SetText("-") frame:Show() end, ["COLLAPSED"] = function(frame) ObjectiveTracker_Collapse() + minimizeButton.text:SetText("+") + -- TextFix(minimizeButton, "collaped") frame:Show() end, ["HIDE"] = function(frame) @@ -98,7 +102,7 @@ function Q:QUEST_COMPLETE() for index = 1, num do local link = GetQuestItemLink("choice", index); if link then - local price = select(11, GetItemInfo(link)) + local price = T.select(11, GetItemInfo(link)) if price and price > highest then highest = price choice = index -- 1.7.9.5