Revised Raid Buff Reminders (#45)
* Update RaidBuffReminder.lua make adjustments to the display of the RBR * Update Auras.lua add relevant options * Update Profile.lua * Update enUS.lua * Update Minimap.lua * Update RaidBuffReminder.lua fix variable typo * match order of options * merge thorns and armor buffs * match the edges of the minimap
This commit is contained in:
committed by
GitHub
parent
849362ae48
commit
716ec59644
@@ -356,8 +356,15 @@ E.Options.args.auras = {
|
||||
name = L["Reverse Style"],
|
||||
desc = L["When enabled active buff icons will light up instead of becoming darker, while inactive buff icons will become darker instead of being lit up."]
|
||||
},
|
||||
position = {
|
||||
wide = {
|
||||
order = 3,
|
||||
type = "toggle",
|
||||
name = "Two Rows",
|
||||
desc = "Show all available buff reminders",
|
||||
set = function(info, value) E.db.general.reminder[info[#info]] = value RB:UpdateSettings() M:UpdateSettings() end,
|
||||
},
|
||||
position = {
|
||||
order = 4,
|
||||
type = "select",
|
||||
name = L["Position"],
|
||||
set = function(info, value) E.db.general.reminder[info[#info]] = value RB:UpdatePosition() end,
|
||||
@@ -367,14 +374,15 @@ E.Options.args.auras = {
|
||||
}
|
||||
},
|
||||
classtype = {
|
||||
order = 4,
|
||||
order = 5,
|
||||
type = "select",
|
||||
name = L["Class Type"],
|
||||
get = function(info) return E.private.general.reminder[info[#info]] end,
|
||||
set = function(info, value) E.private.general.reminder[info[#info]] = value RB:UpdateSettings() end,
|
||||
values = {
|
||||
["Caster"] = L["Caster"],
|
||||
["Attack"] = L["Attack"]
|
||||
["Melee"] = L["Melee"],
|
||||
["Ranged"] = L["Ranged"]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -410,4 +418,4 @@ E.Options.args.auras = {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user