From 7c9a26b3afba5230cdc19b96a2c18e18d2666641 Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Fri, 26 Sep 2025 17:36:47 +0200 Subject: [PATCH] OmagCUT 2.7i5 : - corretta impostazione livello temporaneo a possibile errato gruppo in grezzo che poteva provocare mancato salvataggio foto (cliente Mega5-F). --- My Project/AssemblyInfo.vb | 4 ++-- RawPhoto/RawPartPageUC.xaml.vb | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/My Project/AssemblyInfo.vb b/My Project/AssemblyInfo.vb index 8c3f707..67a8deb 100644 --- a/My Project/AssemblyInfo.vb +++ b/My Project/AssemblyInfo.vb @@ -62,5 +62,5 @@ Imports System.Windows ' by using the '*' as shown below: ' - - + + diff --git a/RawPhoto/RawPartPageUC.xaml.vb b/RawPhoto/RawPartPageUC.xaml.vb index ade295f..2aef526 100644 --- a/RawPhoto/RawPartPageUC.xaml.vb +++ b/RawPhoto/RawPartPageUC.xaml.vb @@ -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