OmagCUT 2.7i5 :

- corretta impostazione livello temporaneo a possibile errato gruppo in grezzo che poteva provocare mancato salvataggio foto (cliente Mega5-F).
This commit is contained in:
Dario Sassi
2025-09-26 17:36:47 +02:00
parent 5263813253
commit 7c9a26b3af
2 changed files with 5 additions and 3 deletions
+2 -2
View File
@@ -62,5 +62,5 @@ Imports System.Windows
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("2.7.9.4")>
<Assembly: AssemblyFileVersion("2.7.9.4")>
<Assembly: AssemblyVersion("2.7.9.5")>
<Assembly: AssemblyFileVersion("2.7.9.5")>
+3 -1
View File
@@ -327,7 +327,7 @@ Public Class RawPartPageUC
' Carico le info del riferimento alternativo della tavola
m_nOtherRefTabLay = EgtCreateGroup(GDB_ID.ROOT)
EgtSetLevel(m_nTempLay, GDB_LV.TEMP)
EgtSetLevel(m_nOtherRefTabLay, GDB_LV.TEMP)
LoadOtherRefTab()
' Assegno dati grezzo rettangolare ai textbox
@@ -2790,7 +2790,9 @@ Public Class RawPartPageUC
Private Sub RawPartPage_Unloaded(sender As Object, e As RoutedEventArgs)
' Rimuovo layer temporaneo per crocette
EgtErase(m_nTempLay)
m_nTempLay = GDB_ID.NULL
EgtErase(m_nOtherRefTabLay)
m_nOtherRefTabLay = GDB_ID.NULL
' Dichiaro pagina non attiva
m_bActive = False
End Sub