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:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user