diff --git a/gui/auction_listing.lua b/gui/auction_listing.lua index 63f47b3..bf380d7 100644 --- a/gui/auction_listing.lua +++ b/gui/auction_listing.lua @@ -636,8 +636,8 @@ local methods = { ChatFrameEditBox:Insert(this.row.data.record.link) elseif not modified and button == 'RightButton' then -- TODO not when alt (how?) tab = 1 - search_tab.set_filter(strlower(info.item(this.row.data.record.item_id).name) .. '/exact') - search_tab.execute(nil, false) + aux.search_tab.set_filter(strlower(info.item(this.row.data.record.item_id).name) .. '/exact') + aux.search_tab.execute(nil, false) else local selection = this.rt:GetSelection() if not selection or selection.record ~= this.row.data.record then diff --git a/tabs/post/frame.lua b/tabs/post/frame.lua index 79234dc..797104f 100644 --- a/tabs/post/frame.lua +++ b/tabs/post/frame.lua @@ -47,7 +47,7 @@ function create_frames() set_item(this.item_record) elseif arg1 == 'RightButton' then tab = 1 - search_tab.set_filter(strlower(info.item(this.item_record.item_id).name) .. '/exact') + search_tab.set_filter(strlower(aux.info.item(this.item_record.item_id).name) .. '/exact') search_tab.execute(nil, false) end end, diff --git a/tabs/search/frame.lua b/tabs/search/frame.lua index a62e27e..d320f84 100644 --- a/tabs/search/frame.lua +++ b/tabs/search/frame.lua @@ -111,7 +111,7 @@ function create_frames() end end do - local btn = gui.checkbutton(settings, gui.font_size.large) + local btn = gui.checkbutton(settings) btn:SetPoint('LEFT', 230, 0) btn:SetWidth(140) btn:SetHeight(25) @@ -126,7 +126,7 @@ function create_frames() public.real_time_button = btn end do - local btn = gui.checkbutton(settings, gui.font_size.large) + local btn = gui.checkbutton(settings) btn:SetPoint('LEFT', real_time_button, 'RIGHT', 15, 0) btn:SetWidth(140) btn:SetHeight(25) @@ -141,7 +141,7 @@ function create_frames() auto_buy_button = btn end do - local btn = gui.checkbutton(settings, gui.font_size.large) + local btn = gui.checkbutton(settings) btn:SetPoint('LEFT', auto_buy_button, 'RIGHT', 15, 0) btn:SetWidth(140) btn:SetHeight(25)