From e09d7ae6879aceca28b6ff5911ee9da87f3740fd Mon Sep 17 00:00:00 2001 From: Manuel Simon Hirsig Date: Sat, 1 Oct 2016 22:36:48 +0200 Subject: [PATCH] bugfix --- gui/auction_listing.lua | 2 +- tabs/post/frame.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/auction_listing.lua b/gui/auction_listing.lua index 4fdbd42..25c61a7 100644 --- a/gui/auction_listing.lua +++ b/gui/auction_listing.lua @@ -641,7 +641,7 @@ local methods = { elseif IsShiftKeyDown() and ChatFrameEditBox:IsVisible() then ChatFrameEditBox:Insert(this.row.data.record.link) elseif not modified and button == 'RightButton' then -- TODO not when alt (how?) - tab = 1 + aux.tab = 1 aux_search_tab.set_filter(strlower(info.item(this.row.data.record.item_id).name) .. '/exact') aux_search_tab.execute(nil, false) else diff --git a/tabs/post/frame.lua b/tabs/post/frame.lua index 68ab9e5..a5c9a10 100644 --- a/tabs/post/frame.lua +++ b/tabs/post/frame.lua @@ -49,7 +49,7 @@ function public.create() if arg1 == 'LeftButton' then set_item(this.item_record) elseif arg1 == 'RightButton' then - tab = 1 + aux.tab = 1 search_tab.set_filter(strlower(aux_info.item(this.item_record.item_id).name) .. '/exact') search_tab.execute(nil, false) end