You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What annoys me is we can search the reagents with a right click in the craft frame but not the crafted item itself, making it mandatory to type the name in the aux frame.
After some research it can be achieved with the following in crafting.lua :
local function hook_skill_item(f)
f:SetScript('OnMouseUp', function(self, button)
if button == 'RightButton' then
if aux.get_tab() then
aux.set_tab(1)
search_tab.set_filter(TradeSkillSkillName:GetText() .. '/exact')
search_tab.execute(nil, false)
end
end
end)
end
and then in function trade_skill_ui_loaded() :
hook_skill_item(_G['TradeSkillSkillIcon'])
The text was updated successfully, but these errors were encountered:
What annoys me is we can search the reagents with a right click in the craft frame but not the crafted item itself, making it mandatory to type the name in the aux frame.
After some research it can be achieved with the following in crafting.lua :
and then in function trade_skill_ui_loaded() :
The text was updated successfully, but these errors were encountered: