Fix Luacheck warnings on Ubuntu 22.04
This commit is contained in:
parent
46f1136bb7
commit
e1c0f106cc
|
@ -215,10 +215,10 @@ local function inv_fields(player, data, fields)
|
||||||
return set_fs(player)
|
return set_fs(player)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function select_item(player, data, _f)
|
local function select_item(player, data, fields)
|
||||||
local item
|
local item
|
||||||
|
|
||||||
for field in pairs(_f) do
|
for field in pairs(fields) do
|
||||||
if find(field, ":") then
|
if find(field, ":") then
|
||||||
item = field
|
item = field
|
||||||
break
|
break
|
||||||
|
|
|
@ -829,7 +829,7 @@ local function get_tooltip(item, info, pos)
|
||||||
return fmt("tooltip[%s;%s]", item, ESC(tooltip))
|
return fmt("tooltip[%s;%s]", item, ESC(tooltip))
|
||||||
end
|
end
|
||||||
|
|
||||||
local function get_output_fs(fs, data, rcp, is_recipe, shapeless, right, btn_size, _btn_size)
|
local function get_output_fs(fs, data, rcp, is_recipe, shapeless, right, btn_size, btn_size2)
|
||||||
local custom_recipe = i3.craft_types[rcp.type]
|
local custom_recipe = i3.craft_types[rcp.type]
|
||||||
local cooking = rcp.type == "cooking"
|
local cooking = rcp.type == "cooking"
|
||||||
local fuel = rcp.type == "fuel"
|
local fuel = rcp.type == "fuel"
|
||||||
|
@ -866,7 +866,7 @@ local function get_output_fs(fs, data, rcp, is_recipe, shapeless, right, btn_siz
|
||||||
end
|
end
|
||||||
|
|
||||||
local BTN_SIZE = i3.settings.item_btn_size
|
local BTN_SIZE = i3.settings.item_btn_size
|
||||||
local arrow_X = right + 0.2 + (_btn_size or BTN_SIZE)
|
local arrow_X = right + 0.2 + (btn_size2 or BTN_SIZE)
|
||||||
local X = arrow_X + 1.2
|
local X = arrow_X + 1.2
|
||||||
local Y = data.yoffset + 1.4
|
local Y = data.yoffset + 1.4
|
||||||
|
|
||||||
|
|
Ŝarĝante…
Reference in New Issue