Migliorata gestione del gruppo temporaneo. DA RIVEDERE!

This commit is contained in:
andrea.villa
2025-10-27 16:39:28 +01:00
parent 746eb9efe9
commit ee54c32918
4 changed files with 11 additions and 6 deletions
+6 -2
View File
@@ -294,8 +294,12 @@ end
-------------------------------------------------------------------------------------------------------------
function BeamLib.CreateTempGroup()
local idTempGroup = EgtGroup( GDB_ID.ROOT)
EgtSetName( idTempGroup, "#TEMP_GROUP#")
local idTempGroup = BeamLib.GetTempGroup()
-- se non esiste, lo creo
if not idTempGroup then
idTempGroup = EgtGroup( GDB_ID.ROOT)
EgtSetName( idTempGroup, "#TEMP_GROUP#")
end
return idTempGroup
end