Skip to content

Commit

Permalink
fix #1
Browse files Browse the repository at this point in the history
  • Loading branch information
bkader committed Sep 28, 2021
1 parent 54e82fb commit df8f512
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Dominos/modules/classBar.lua
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@ end

function ClassButton:Skin()
if not Dominos:Masque("Class Bar", self) then
b.icon:SetTexCoord(0.06, 0.94, 0.06, 0.94)
b:GetNormalTexture():SetVertexColor(1, 1, 1, 0.5)
self.icon:SetTexCoord(0.06, 0.94, 0.06, 0.94)
self:GetNormalTexture():SetVertexColor(1, 1, 1, 0.5)
end
end

function ClassButton:Restore(id)
local unused = self.unused
if unused then
b = unused[id]
local b = unused[id]
if b then
unused[id] = nil
b:Show()
Expand Down
2 changes: 1 addition & 1 deletion Dominos/modules/questTracker.lua
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function class:New()
return f
end

function TitleBoxMaker(parent)
local function TitleBoxMaker(parent)
local header = parent:CreateTexture(parent:GetName() .. "TitleBox", "ARTWORK")
header:SetHeight(32)
header:SetPoint("LEFT", parent, "TOPLEFT", 7, -4)
Expand Down

0 comments on commit df8f512

Please sign in to comment.