Skip to content
This repository has been archived by the owner on Jun 2, 2021. It is now read-only.

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Apollyonn committed Oct 24, 2018
1 parent 62e397e commit 81a6326
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion ElvUI/Settings/Filters/Unitframe.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
Expand Down
40 changes: 20 additions & 20 deletions ElvUI_Config/bags.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand All @@ -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",
Expand Down

0 comments on commit 81a6326

Please sign in to comment.