From fe91bda565ce3eb64304277eaaeb2e107a3829c1 Mon Sep 17 00:00:00 2001 From: Emmanuele Sassi Date: Tue, 7 Feb 2017 21:03:29 +0000 Subject: [PATCH] EgtCAM5 : - Aggiunto Chisel in SetUp. --- SetUpWindow/SetUpViewModel.vb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SetUpWindow/SetUpViewModel.vb b/SetUpWindow/SetUpViewModel.vb index 0788801..88c7c27 100644 --- a/SetUpWindow/SetUpViewModel.vb +++ b/SetUpWindow/SetUpViewModel.vb @@ -205,6 +205,9 @@ Namespace EgtCAM5 If EgtUILib.GetPrivateProfileInt(S_TOOLS, K_COMPO, 0, m_sCurrMachIniFilePath) <> 0 Then ActiveToolsFamiliesList.Add(New ToolsFamily With {.FamilyId = MCH_TF.COMPO, .FamilyName = EgtMsg(MSG_TOOLSDBPAGE + 5)}) End If + If EgtUILib.GetPrivateProfileInt(S_TOOLS, K_CHISEL, 0, m_sCurrMachIniFilePath) <> 0 Then + ActiveToolsFamiliesList.Add(New ToolsFamily With {.FamilyId = MCH_TF.CHISEL, .FamilyName = EgtMsg(MSG_TOOLSDBPAGE + 9)}) + End If Return ActiveToolsFamiliesList.ToArray End Function