From f70a5b90a87f66dd2003b0db661cc8a1a3a3afc5 Mon Sep 17 00:00:00 2001 From: Steven Jackson Date: Mon, 1 Dec 2014 22:00:00 -0600 Subject: [PATCH] 5.3.0 --- .../SVUI/packages/tools/components/garrison.lua | 1 + .../SVUI/packages/tools/components/questwatch.lua | 7 ++++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Interface/AddOns/SVUI/packages/tools/components/garrison.lua b/Interface/AddOns/SVUI/packages/tools/components/garrison.lua index 539f00d..9b47aeb 100644 --- a/Interface/AddOns/SVUI/packages/tools/components/garrison.lua +++ b/Interface/AddOns/SVUI/packages/tools/components/garrison.lua @@ -252,6 +252,7 @@ local SetGarrisonTooltip = function(self) GetActiveMissions() GetBuildingData() + SVUI_Garrison:StopAlert(); end local function LoadToolBarGarrison() diff --git a/Interface/AddOns/SVUI/packages/tools/components/questwatch.lua b/Interface/AddOns/SVUI/packages/tools/components/questwatch.lua index 7466228..4651bed 100644 --- a/Interface/AddOns/SVUI/packages/tools/components/questwatch.lua +++ b/Interface/AddOns/SVUI/packages/tools/components/questwatch.lua @@ -164,7 +164,12 @@ function MOD:LoadQuestWatch() ObjectiveTrackerFrame:SetPoint("TOPRIGHT", listFrame, "TOPRIGHT", -31, 0) ObjectiveTrackerFrame:SetFrameLevel(listFrame:GetFrameLevel() + 1) - ObjectiveTrackerFrame.SetPoint = function() return end; + hooksecurefunc(ObjectiveTrackerFrame, "SetPoint", function(self, a1, p, a2, x, y) + if(p ~= SVUI_QuestWatchFrameScrollFrame) then + self:SetPoint("TOPRIGHT", SVUI_QuestWatchFrameScrollFrame, "TOPRIGHT", -31, 0) + end + end) + --ObjectiveTrackerFrame.SetPoint = function() return end; ObjectiveTrackerFrame.HeaderMenu.MinimizeButton:Hide() -- 1.7.9.5