Aggiunto ABGOption e modificato lista di test hardware

This commit is contained in:
Annamaria Sassi
2025-09-16 16:08:24 +02:00
parent 7f8d5621ed
commit 8550044f84
13 changed files with 309 additions and 144 deletions
+2 -2
View File
@@ -17,7 +17,7 @@ namespace WebWindowComplex
{
public event EventHandler<OnPreviewEventArgs> OnPreview = delegate { };
private String m_sProfilePath;
private string m_sProfilePath;
public string sProfilePath
{
get
@@ -1093,7 +1093,7 @@ namespace WebWindowComplex
internal void SetSelHardwareFromId(string sId)
{
m_SelHardware = m_HardwareList.FirstOrDefault(x => x.sId == sId);
m_SelHardware = m_HardwareList.FirstOrDefault(x => x.sId == sId)?? new Hardware("","","","","",0,0);
if (m_SelHardware != null)
m_SelHardware = m_HardwareList[0];
}