Skip to content

Commit

Permalink
fixing styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Qblolz committed Jul 19, 2020
1 parent 9715129 commit 42d73c6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion BigAuras.lua
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,11 @@ function BigAuras:CreateFrames()
local _frame = self.frames[point]

local font, size = _frame.Text:GetFont()
_frame.Text:SetFont(font, size, "OUTLINE")
if point:find("party") or point:find("arena") then
_frame.Text:SetFont(font, size/1.4, "OUTLINE")
else
_frame.Text:SetFont(font, size, "OUTLINE")
end

_frame.showingSpellID = nil
_frame.showingSpellPriority = nil
Expand Down

0 comments on commit 42d73c6

Please sign in to comment.