From 30bc97451b1042caf543452fa39ab7460bbb2246 Mon Sep 17 00:00:00 2001 From: Kaan Karaoglu Date: Tue, 8 Dec 2020 22:50:40 +0100 Subject: [PATCH] Bug fix for jumpToTab --- Sources/TabHandler.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/TabHandler.lua b/Sources/TabHandler.lua index d62c4fa..7f98acf 100644 --- a/Sources/TabHandler.lua +++ b/Sources/TabHandler.lua @@ -485,7 +485,7 @@ local function createTabGroup() local cW, cH, cL, cT, cA = win:GetWidth(), win:GetHeight(), win:GetLeft(), win:SafeGetTop(), win:GetAlpha(); if(oW ~= cW) then win:SetWidth(oW); end if(oH ~= cH) then win:SetHeight(oH); end - if(oL ~= cL or oT ~= oT) then win:SetPoint("TOPLEFT", WindowParent, "BOTTOMLEFT", oL, oT); end + if(oL ~= cL or oT ~= oT) then win:SetPoint("TOPLEFT", UIParent, "BOTTOMLEFT", oL, oT); end if(oA ~= cA) then win:SetAlpha(oA); end lastWin = oldWin:GetName(); end