From 45cdddb9946c97cd84967e91e7123311965c1476 Mon Sep 17 00:00:00 2001 From: "luca.mazzoleni" Date: Fri, 17 Oct 2025 14:34:12 +0200 Subject: [PATCH] - in PanelSaw corretti spazi in export cutting list per Cutty --- LuaLibs/PanelSaw.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/LuaLibs/PanelSaw.lua b/LuaLibs/PanelSaw.lua index 287f7ce..bb014ce 100644 --- a/LuaLibs/PanelSaw.lua +++ b/LuaLibs/PanelSaw.lua @@ -115,7 +115,7 @@ local function BuildCuttingList_Cutty( PanelList, SheetList, ProjectInfo) local F0 = { Header = { 'F0'}, - HeaderPlaceholders = { '%s'}, + HeaderPlaceholders = { '%-53s'}, Values = { ' 7.70', '210700', '150300'}, ValuesPlaceholders = { '%s', '%s', '%s'} } @@ -126,8 +126,8 @@ local function BuildCuttingList_Cutty( PanelList, SheetList, ProjectInfo) } local F1 = { - Header = { 'F1', CurrentPanelList[1].dThickness, 0, 0, 0}, - HeaderPlaceholders = { '%s', '%.3f', '%.3f', '%.3f', '%.3f'}, + Header = { 'F1', CurrentPanelList[1].dThickness, 0, 0, 0, ''}, + HeaderPlaceholders = { '%s', '%.3f', '%.3f', '%.3f', '%.3f', '%-20s'}, ValuesList = {}, ValuesPlaceholders = { '%.3f', '%.3f', '%d', '%d', '%d', '%-29d', '%-50s', '%d', '%.3f', '%d', '%d', '%d', '%d'}, }