From 9cdb492986c9734c91b2763d75e0afdbcd2db9ac Mon Sep 17 00:00:00 2001 From: PHIDIAS Date: Wed, 26 Mar 2025 23:46:49 +0900 Subject: [PATCH] . --- PHI-CL/control.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PHI-CL/control.lua b/PHI-CL/control.lua index 49ba8ad..b66e251 100644 --- a/PHI-CL/control.lua +++ b/PHI-CL/control.lua @@ -136,7 +136,7 @@ if settings.startup['PHI-CT'].value then for y = -table_range, table_range, 1 do for x = -table_range, table_range, 1 do local sprite = ((x == 0 and y == 0) and table_position.add({type = 'sprite', name = 'sprite_inserter', sprite = 'item/bulk-inserter'})) or table_position.add({type = 'sprite-button', name = 'button_position_' .. tostring(x + table_range + 1) .. '_' .. tostring(y + table_range + 1), style = 'slot_sized_button'}) - sprite.style.stretch_image_to_widget_size = ((x == 0 and y == 0) and true) or false + sprite.style.stretch_image_to_widget_size = ((x == 0 and y == 0) and true) or nil sprite.style.size = {32, 32} end end