Dominos Keybind Text (Resolved)
Jeirs opened this issue ยท 4 comments
Hello before dominos update for pre-patch
I used to use this
_G[self:GetName()..'HotKey']:SetFont("Fonts\\FRIZQT__.ttf", 18, "OUTLINE")
to change the hotkey text in the bindableButton.lua
With the new update , can someone help me with the lua?
Thank you.
Maybe something like this?
hooksecurefunc(Dominos.BindableButton, "AddQuickBindingSupport", function(button)
button.HotKey:SetFont("Fonts\\FRIZQT__.ttf", 18, "OUTLINE")
end)
Just generally towards the end of the file (or even in a separate addon that's dependent on Dominos). I think the call should actually be:
hooksecurefunc(Dominos.BindableButton, "AddQuickBindingSupport", function(self, button)
button.HotKey:SetFont("Fonts\\FRIZQT__.ttf", 18, "OUTLINE")
end)