Skip to content

Commit

Permalink
Fixed '/details auras' not opening its panel
Browse files Browse the repository at this point in the history
  • Loading branch information
Tercioo committed Jul 3, 2024
1 parent 596d749 commit a731f66
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions frames/window_debug.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,6 @@ local addonName, Details222 = ...
local detailsFramework = DetailsFramework
local _

--namespace
Details.AuraTracker = {
buff = {},
debuff = {},
}

--frame options
local windowWidth = 800
local windowHeight = 670
Expand Down Expand Up @@ -116,6 +110,19 @@ local createDebugOptionsFrame = function()
name = "Loot Shown in the End of Mythic+ Panel Debug",
desc = "Loot shown in the Panel shown at the end of a Mythic+ dungeon",
},

{--mythic+ chart debug
type = "toggle",
get = function()
return Details222.Debug.MythicPlusChartWindowDebug
end,
set = function(self, fixedparam, value)
Details222.Debug.MythicPlusChartWindowDebug = value
end,
name = "Mythic+ Chart Save and Use The Same Chart Data",
desc = "When enabled, Details! will save the chart data from the next m+ run and use it when showing the chart panel. This save persist on saved variables and I don't think it is deleted, never.",
--/run Details.mythic_plus.last_mythicrun_chart = {}
},
}

options.always_boxfirst = true
Expand Down

0 comments on commit a731f66

Please sign in to comment.