Skip to content

Commit

Permalink
Fix Queue Options
Browse files Browse the repository at this point in the history
  • Loading branch information
Road-block authored and Rottenbeer committed Jan 19, 2023
1 parent d1e5666 commit a2939e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions ItemRack/ItemRackQueue.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
-- ItemRackQueue.lua
local _
local GetItemCooldown = _G.GetItemCooldown or C_Container.GetItemCooldown

function ItemRack.PeriodicQueueCheck()
if SpellIsTargeting() then
Expand Down
3 changes: 2 additions & 1 deletion ItemRackOptions/ItemRackOptions.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1210,7 +1210,8 @@ function ItemRackOpt.SortListScrollFrameUpdate()
end
_G["ItemRackOptSortList"..i.."Name"]:SetText(name)
_G["ItemRackOptSortList"..i.."Icon"]:SetTexture(texture)
_G["ItemRackOptSortList"..i.."Name"]:SetTextColor(GetItemQualityColor(quality or 1))
local r,g,b = GetItemQualityColor(quality or 1)
_G["ItemRackOptSortList"..i.."Name"]:SetTextColor(r,g,b,1)
item:Show()
if idx==ItemRackOpt.SortSelected then
ItemRackOpt.LockHighlight(item)
Expand Down

0 comments on commit a2939e7

Please sign in to comment.