From a5d68b69f956a345a34f9adf665e100ec7d0a1c5 Mon Sep 17 00:00:00 2001 From: SaraP Date: Mon, 4 Aug 2025 11:39:32 +0200 Subject: [PATCH] DataWindow : - aggiornate chiavi tabelle per liste con dimensioni vetri e pezzi. --- Designing/WinProject.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Designing/WinProject.lua b/Designing/WinProject.lua index e15ac0c..29bab88 100644 --- a/Designing/WinProject.lua +++ b/Designing/WinProject.lua @@ -292,7 +292,7 @@ local function WinGetSectionsTotalLenghts() end end if not bFound then - table.insert( WDG.SECTIONS_LENGTHS, { w = dWidth, h = dHeight, l = dLen}) + table.insert( WDG.SECTIONS_LENGTHS, { W = dWidth, H = dHeight, L = dLen}) end end end @@ -315,7 +315,7 @@ local function WinGetGlassesList() local dW = EgtGetInfo( nLayerId, WIN_GEOWIDTH, 'd') or 0 local dL = EgtGetInfo( nLayerId, WIN_GEOHEIGHT, 'd') or 0 local dT = EgtGetInfo( nLayerId, WIN_GLASSTHICKNESS, 'd') or 0 - table.insert( WDG.GLASSES_LIST, { bRect = bShapeRect, w = dW, l = dL, t = dT}) + table.insert( WDG.GLASSES_LIST, { Rect = bShapeRect, W = dW, L = dL, T = dT}) end nPartId = EgtGetNextPart( nPartId) end