Added buff containers for vanity and consolidated buffs to match base… (#98)
* Added buff containers for vanity and consolidated buffs to match base ui feature * use locals and don't unpack values 2x * Moved vanity and consolidated settings to base profile instead of private per character
This commit is contained in:
parent
e11b8b0817
commit
44fe39508a
5 changed files with 299 additions and 11 deletions
|
|
@ -149,6 +149,26 @@ E.Options.args.auras = {
|
|||
E:StaticPopup_Show("PRIVATE_RL")
|
||||
end
|
||||
},
|
||||
mergeVanity = {
|
||||
order = 3.1,
|
||||
type = "toggle",
|
||||
name = L["Merge Vanity"],
|
||||
get = function(info) return E.db.auras[info[#info]] end,
|
||||
set = function(info, value)
|
||||
E.db.auras[info[#info]] = value
|
||||
A:triggerUpdateOnNext()
|
||||
end
|
||||
},
|
||||
mergeConsolidated = {
|
||||
order = 3.2,
|
||||
type = "toggle",
|
||||
name = L["Merge Consolidated"],
|
||||
get = function(info) return E.db.auras[info[#info]] end,
|
||||
set = function(info, value)
|
||||
E.db.auras[info[#info]] = value
|
||||
A:triggerUpdateOnNext()
|
||||
end
|
||||
},
|
||||
general = {
|
||||
order = 4,
|
||||
type = "group",
|
||||
|
|
|
|||
|
|
@ -326,6 +326,8 @@ L["Disable Bank Sort"] = true
|
|||
L["Disable Debuff Highlight"] = true
|
||||
L["Disabled Blizzard Frames"] = true
|
||||
L["Disabled Blizzard"] = true
|
||||
L["Merge Vanity"] = true
|
||||
L["Merge Consolidated"] = true
|
||||
L["Disables the focus and target of focus unitframes."] = true
|
||||
L["Disables the player and pet unitframes."] = true
|
||||
L["Disables the target and target of target unitframes."] = true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue