|
|
|
@ -501,7 +501,9 @@ function render_items_editor()
@@ -501,7 +501,9 @@ function render_items_editor()
|
|
|
|
|
imgui.Separator(); |
|
|
|
|
|
|
|
|
|
-- Item search tool.. |
|
|
|
|
imgui.InputText('Item Name', variables['var_ItemLookup'][1], 64); |
|
|
|
|
if (imgui.InputText('Item Name', variables['var_ItemLookup'][1], 64, imgui.bor(ImGuiInputTextFlags_EnterReturnsTrue))) then |
|
|
|
|
itemwatch_settings_items = lists.find_items(imgui.GetVarValue(variables['var_ItemLookup'][1])); |
|
|
|
|
end |
|
|
|
|
imgui.SameLine(); |
|
|
|
|
show_help('Enter an item name to lookup. (You can use partial names.)'); |
|
|
|
|
if (imgui.Button('Search For Item(s)', -1, 18)) then |
|
|
|
@ -585,7 +587,9 @@ function render_keyitems_editor()
@@ -585,7 +587,9 @@ function render_keyitems_editor()
|
|
|
|
|
imgui.Separator(); |
|
|
|
|
|
|
|
|
|
-- Key Item search tool.. |
|
|
|
|
imgui.InputText('Key Item', variables['var_KeyItemLookup'][1], 64); |
|
|
|
|
if (imgui.InputText('Key Item', variables['var_KeyItemLookup'][1], 64, imgui.bor(ImGuiInputTextFlags_EnterReturnsTrue))) then |
|
|
|
|
itemwatch_settings_keys = lists.find_keyitems(imgui.GetVarValue(variables['var_KeyItemLookup'][1])); |
|
|
|
|
end |
|
|
|
|
imgui.SameLine(); |
|
|
|
|
show_help('Enter a key item name to lookup. (You can use partial names.)'); |
|
|
|
|
if (imgui.Button('Search For Key Item(s)', -1, 18)) then |
|
|
|
|