View Single Post
04/08/15, 01:12 PM   #2
votan
 
votan's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2014
Posts: 577
Does this fix it for you? For me it does.

Lua Code:
  1. local function OnSlotUpdated(bagId, slotIndex, slotData)
  2.   if slotData and slotData.searchData and slotData.searchData.cached and slotData.searchData.cache then
  3.     slotData.searchData.cached = slotData.rawName:lower() == slotData.searchData.cache[1]
  4.   end
  5. end
  6.  
  7. SHARED_INVENTORY:RegisterCallback("SlotUpdated", OnSlotUpdated)
  Reply With Quote