Skip to content

Commit

Permalink
initial fixes for font and click
Browse files Browse the repository at this point in the history
  • Loading branch information
mooreatv committed Oct 29, 2022
1 parent a6772c1 commit 599cb31
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ Coming next:
- Your input/suggestions welcome !
- See open issues for ideas https://github.com/mooreatv/DynamicBoxer/issues

v3.10.01 Oct 27th 2022
- Dragonflight fixes (Font, Click: remaining: Options panel)

v3.10.00 Oct 25th 2022
- Initial update for Dragonflight

Expand Down
2 changes: 1 addition & 1 deletion DynamicBoxer/DBoxUI.lua
Original file line number Diff line number Diff line change
Expand Up @@ -857,7 +857,7 @@ function DB:SetupHugeFont(height)
local bf = Game120Font or SystemFont_Huge1
local baseFont = bf:GetFont()
DB:Debug("base font is %", baseFont)
local ret = DB.hugeFont:SetFont(baseFont, height) -- "THICKOUTLINE")
local ret = DB.hugeFont:SetFont(baseFont, height, "") -- "THICKOUTLINE")
DB:Debug("Set font for height % : %", height, ret)
DB.hugeFont:SetTextColor(.95, .85, .05, .9)
DB.hugeFont:SetShadowOffset(3, -3)
Expand Down
1 change: 1 addition & 0 deletions DynamicBoxer/ISBoxerPatches.lua
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ function isboxer.SetMacro(usename, key, macro, conditionalshift, conditionalalt,
else
DB:Debug(2, "Creating button %", name)
button = CreateFrame("Button", name, nil, "SecureActionButtonTemplate")
button:RegisterForClicks("AnyUp", "AnyDown")
end
-- End of change compared to original
button:SetAttribute("type", "macro")
Expand Down

0 comments on commit 599cb31

Please sign in to comment.