This commit is contained in:
Manuel Simon Hirsig
2016-09-06 18:32:56 +02:00
parent b5750fc294
commit ad4aa1afb2
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -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
+1 -1
View File
@@ -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,
+3 -3
View File
@@ -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)