From 040bfec01748860f9c5bddcceeb8d6c4da3521ab Mon Sep 17 00:00:00 2001 From: WildCard_25 Date: Mon, 18 Mar 2019 03:47:02 +1100 Subject: [PATCH] Fix Mission Control tab so that it doesn't move and overlap the Help tab when opening and closing the options panel Fix Quickrun tab so that it doesn't move when opening and closing the option panel --- ShipYard.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ShipYard.lua b/ShipYard.lua index d470eae..97bf66e 100644 --- a/ShipYard.lua +++ b/ShipYard.lua @@ -295,7 +295,7 @@ print("Doing one time initialization for",this:GetName(),...) tabMC:SetNormalTexture("Interface\\ICONS\\ACHIEVEMENT_GUILDPERK_WORKINGOVERTIME.blp") tabMC:SetScript("OnClick",function(this,...) module:OpenMissionControlTab() end) tabMC:Show() - tabMC:SetPoint('TOPLEFT',GSF,'TOPRIGHT',0,0) + tabMC:SetPoint('TOPLEFT',GCS,'TOPRIGHT',0,-60) local tabQ=CreateFrame("Button",nil,GSF,"SpellBookSkillLineTabTemplate") GSF.tabQ=tabQ tabQ.tooltip=L["Automatically process completed missions and schedules new ones."].."\n".. @@ -305,7 +305,7 @@ print("Doing one time initialization for",this:GetName(),...) tabQ:SetPushedTexture("Interface\\ICONS\\Ability_Rogue_Sprint.blp") tabQ:Show() tabQ:SetScript("OnClick",function(this,button) addon:RunQuick() end) - tabQ:SetPoint('TOPLEFT',GSF,'TOPRIGHT',0,-210) + tabQ:SetPoint('TOPLEFT',GCS,'TOPRIGHT',0,-210) GSF.FollowerStatusInfo=GSF.BorderFrame:CreateFontString(nil, "OVERLAY", "GameFontNormal") GSF.ResourceInfo=GSF.BorderFrame:CreateFontString(nil, "OVERLAY", "GameFontNormal") -- 1.7.9.5