comparison Shopping.lua @ 177:44ce007189e0 v83

Fix to automatic search on shopping list at auction house.
author yellowfive
date Sun, 26 Jan 2020 12:37:12 -0800
parents c229c759a125
children eec8032ba9df
comparison
equal deleted inserted replaced
176:1b44e5094830 177:44ce007189e0
45 end 45 end
46 46
47 local function onItemClick(widget) 47 local function onItemClick(widget)
48 local name = widget:GetUserData("itemName") 48 local name = widget:GetUserData("itemName")
49 if name then 49 if name then
50 QueryAuctionItems(name) 50
51 local query = {}
52 query.searchString = name
53 query.sorts = {}
54 C_AuctionHouse.SendBrowseQuery(query)
55
56 --QueryAuctionItems(name)
51 end 57 end
52 end 58 end
53 59
54 60
55 function Amr:ShowShopWindow() 61 function Amr:ShowShopWindow()