Skip to content

Commit

Permalink
Fix rendering issues in SpellTimers
Browse files Browse the repository at this point in the history
- Properly flags it as "Other"
- Some myheight changes.
  • Loading branch information
QartemisT committed Jan 6, 2024
1 parent 65acf40 commit 709b08e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion DBM-SpellTimers/SpellTimers.lua
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ do
DBM:RegisterOnGuiLoadCallback(function()
local createnewentry
local CurCount = 0
local panel = _G["DBM_GUI"]:CreateNewPanel(L.TabCategory_SpellsUsed, "option")
local panel = _G["DBM_GUI"]:CreateNewPanel(L.TabCategory_SpellsUsed, "OTHER")
local generalarea = panel:CreateArea(L.AreaGeneral)
local auraarea = panel:CreateArea(L.AreaAuras)

Expand Down Expand Up @@ -205,6 +205,7 @@ do
disableEncounter:SetScript("OnClick", function(self) settings.disable_encounter = not not self:GetChecked() end)

local resetbttn = generalarea:CreateButton(L.Reset, 140, 20)
resetbttn.myheight = 0
resetbttn:SetPoint("TOPRIGHT", generalarea.frame, "TOPRIGHT", -15, -15)
resetbttn:SetScript("OnClick", function()
twipe(DBM_SpellTimers_Settings)
Expand Down

0 comments on commit 709b08e

Please sign in to comment.