diff --git a/ElvUI/Settings/Filters/Unitframe.lua b/ElvUI/Settings/Filters/Unitframe.lua index 9ad9c47..4828b0f 100644 --- a/ElvUI/Settings/Filters/Unitframe.lua +++ b/ElvUI/Settings/Filters/Unitframe.lua @@ -400,7 +400,7 @@ G.unitframe.buffwatch = { PRIEST = { [6788] = ClassBuff(6788, "TOPLEFT", {1, 0, 0}), -- Weakened Soul [10060] = ClassBuff(10060 , "RIGHT", {0.89, 0.09, 0.05}), -- Power Infusion - [48066] = ClassBuff(48066, "BOTTOMRIGHT", {0.81, 0.85, 0.1}), -- Power Word: Shield + [25218] = ClassBuff(25218, "BOTTOMRIGHT", {0.81, 0.85, 0.1}), -- Power Word: Shield [25222] = ClassBuff(25222, "BOTTOMLEFT", {0.4, 0.7, 0.2}), -- Renew [33076] = ClassBuff(33076, "TOPRIGHT", {0.2, 0.7, 0.2}), -- Prayer of Mending }, diff --git a/ElvUI_Config/bags.lua b/ElvUI_Config/bags.lua index cd4c16d..2a28548 100644 --- a/ElvUI_Config/bags.lua +++ b/ElvUI_Config/bags.lua @@ -38,9 +38,23 @@ E.Options.args.bags = { type = "header", name = L["General"] }, - moneyFormat = { + strata = { order = 2, type = "select", + name = L["Frame Strata"], + set = function(info, value) E.db.bags[info[#info]] = value; E:StaticPopup_Show("PRIVATE_RL") end, + values = { + ["BACKGROUND"] = "BACKGROUND", + ["LOW"] = "LOW", + ["MEDIUM"] = "MEDIUM", + ["HIGH"] = "HIGH", + ["DIALOG"] = "DIALOG", + ["TOOLTIP"] = "TOOLTIP" + } + }, + moneyFormat = { + order = 3, + type = "select", name = L["Money Format"], desc = L["The display format of the money text that is shown at the top of the main bag."], values = { @@ -54,50 +68,36 @@ E.Options.args.bags = { set = function(info, value) E.db.bags[ info[#info] ] = value B:UpdateGoldText() end }, moneyCoins = { - order = 3, + order = 4, type = "toggle", name = L["Show Coins"], desc = L["Use coin icons instead of colored text."], set = function(info, value) E.db.bags[ info[#info] ] = value B:UpdateGoldText() end }, clearSearchOnClose = { - order = 4, + order = 5, type = "toggle", name = L["Clear Search On Close"], set = function(info, value) E.db.bags[info[#info]] = value end }, reverseSlots = { - order = 5, + order = 6, type = "toggle", name = L["Reverse Bag Slots"], set = function(info, value) E.db.bags[info[#info]] = value B:UpdateAll() end, }, disableBagSort = { - order = 6, + order = 7, type = "toggle", name = L["Disable Bag Sort"], set = function(info, value) E.db.bags[info[#info]] = value B:ToggleSortButtonState(false) end }, disableBankSort = { - order = 7, + order = 8, type = "toggle", name = L["Disable Bank Sort"], set = function(info, value) E.db.bags[info[#info]] = value B:ToggleSortButtonState(true) end }, - strata = { - order = 8, - type = "select", - name = L["Frame Strata"], - set = function(info, value) E.db.bags[info[#info]] = value; E:StaticPopup_Show("PRIVATE_RL") end, - values = { - ["BACKGROUND"] = "BACKGROUND", - ["LOW"] = "LOW", - ["MEDIUM"] = "MEDIUM", - ["HIGH"] = "HIGH", - ["DIALOG"] = "DIALOG", - ["TOOLTIP"] = "TOOLTIP" - } - }, countGroup = { order = 9, type = "group",