Skip to content

Commit

Permalink
Merge pull request #32 from LuniaDev/master
Browse files Browse the repository at this point in the history
Fix SetNormalAtlas Lua error
  • Loading branch information
Resike authored Dec 23, 2022
2 parents f1ed828 + 93309ea commit 4b5ed39
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Modules/DRTracker.lua
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,9 @@ function DRTracker:CreateFrame(unit)
return
end
-- create frame
self.frame[unit] = CreateFrame("Frame", "Gladius"..self.name.."Frame"..unit, button, "ActionButtonTemplate")
self.frame[unit] = CreateFrame("CheckButton", "Gladius"..self.name.."Frame"..unit, button, "ActionButtonTemplate")
self.frame[unit]:EnableMouse(false)
self.frame[unit]:SetNormalTexture("Interface\\COMMON\\spacer")
end

function DRTracker:Update(unit)
Expand Down

0 comments on commit 4b5ed39

Please sign in to comment.