Skip to content

Commit

Permalink
ElvUI doing ElvUI things again
Browse files Browse the repository at this point in the history
  • Loading branch information
DFortun81 committed Feb 4, 2024
1 parent b1eb732 commit 22a2480
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Modules/Tooltip.lua
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ local tooltipFunction = function(self, target)
end
local rightSide = _G[self:GetName() .. "TextRight2"];
leftSide = _G[self:GetName() .. "TextLeft2"];
if leftSide and rightSide then
if leftSide and rightSide and not ElvUI then
leftSide:SetText(L["TITLE"]);
leftSide:Show();
rightSide:SetText("Author");
Expand All @@ -121,7 +121,7 @@ tooltipFunction = function(self, target)
end
local rightSide = _G[self:GetName() .. "TextRight2"];
local leftSide = _G[self:GetName() .. "TextLeft2"];
if leftSide and rightSide then
if leftSide and rightSide and not ElvUI then
leftSide:SetText(L["TITLE"]);
leftSide:Show();
rightSide:SetText("Contributor");
Expand Down

0 comments on commit 22a2480

Please sign in to comment.