diff --git a/src/gui.lua b/src/gui.lua index 6c004e0..051d39d 100644 --- a/src/gui.lua +++ b/src/gui.lua @@ -1357,7 +1357,9 @@ local function get_items_fs(fs, data, player, full_height) local lbl = ES"No item to show" if next(i3.recipe_filters) and #i3.init_items > 0 and data.filter == "" then - lbl = ES"Collect items to reveal more recipes" + lbl = ES"Collect items to reveal more recipes" -- Progressive mode, etc. + else + image(data.inv_width + 2, 4.5, 4, 4, "i3_no_result.png") end button(data.inv_width + 0.1, 3, 8, 1, "no_item", lbl) diff --git a/textures/i3_no_result.png b/textures/i3_no_result.png new file mode 100644 index 0000000..96592c8 Binary files /dev/null and b/textures/i3_no_result.png differ