Skip to content

Commit 583ffa9

Browse files
committed
Make the BoE text smaller and move it into the border so you can see more of the icon.
1 parent c093d26 commit 583ffa9

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Plugin_BindsOn/BindsOn.lua

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,14 @@ end
8484

8585
local BindTextsByButton = {}
8686

87+
local fontFile, fontSize = GameFontNormalSmall:GetFont()
88+
8789
local function Update(button)
8890
if BindTextsByButton[button] == nil then
89-
BindTextsByButton[button] = button:CreateFontString(nil, "ARTWORK", "GameFontNormalOutline")
90-
BindTextsByButton[button]:SetPoint("TOP", button, "TOP", 0, -2)
91+
BindTextsByButton[button] = button:CreateFontString(nil, "OVERLAY")
92+
BindTextsByButton[button]:SetFont(fontFile, fontSize, "THICKOUTLINE")
93+
BindTextsByButton[button]:SetPoint("TOPRIGHT", button, "TOPRIGHT", 3, 2)
94+
BindTextsByButton[button]:SetJustifyH("RIGHT")
9195
end
9296

9397
if LB.GetGlobalOption("showBindsOn") then

0 commit comments

Comments
 (0)