diff --git a/Icarus/CurrMachiningPanel/CurrMachining.vb b/Icarus/CurrMachiningPanel/CurrMachining.vb index cbcda8f..afe57de 100644 --- a/Icarus/CurrMachiningPanel/CurrMachining.vb +++ b/Icarus/CurrMachiningPanel/CurrMachining.vb @@ -249,7 +249,7 @@ Public Class CurrMachiningCathegory New CurrNumericMachiningParam(MachiningParam.Params.RIBSLEADOUTCOASTING, nPartId, nIndex, bForceFromDb), New CurrNumericMachiningParam(MachiningParam.Params.RIBSLEADOUTWIPE, nPartId, nIndex, bForceFromDb), New CurrNumericMachiningParam(MachiningParam.Params.RIBSLEADOUTWIPEDIR, nPartId, nIndex, bForceFromDb), - New CurrNumericMachiningParam(MachiningParam.Params.RIBSLIMITUNBOUNDEDWITHSOLID, nPartId, nIndex, bForceFromDb)}) + New CurrCheckMachiningParam(MachiningParam.Params.RIBSLIMITUNBOUNDEDWITHSOLID, nPartId, nIndex, bForceFromDb)}) Case Cathegories.SHELL_NUMBER m_sName = "Reduce Shell Number" m_MachiningParamList = New List(Of MachiningParam)({New CurrNumericMachiningParam(MachiningParam.Params.SHELLNBRDIFFERENCE, nPartId, nIndex, bForceFromDb), diff --git a/Icarus/FilledSolidPanel/FilledSolidPanelVM.vb b/Icarus/FilledSolidPanel/FilledSolidPanelVM.vb index 08d2cc3..70a2efc 100644 --- a/Icarus/FilledSolidPanel/FilledSolidPanelVM.vb +++ b/Icarus/FilledSolidPanel/FilledSolidPanelVM.vb @@ -772,6 +772,8 @@ Public Class FilledSolidPanelVM SelFilledSolid = m_FilledSolidList(m_FilledSolidList.Count - 1) Else SelFilledSolid = Nothing + m_bEdit_IsChecked = False + NotifyPropertyChanged(NameOf( bEdit_IsChecked)) End If NotifyPropertyChanged(NameOf(SelFilledSolid)) End If diff --git a/Icarus/ImportExportMachiningPanel/ImportExportMachiningPanelVM.vb b/Icarus/ImportExportMachiningPanel/ImportExportMachiningPanelVM.vb index d679f5d..6c950c2 100644 --- a/Icarus/ImportExportMachiningPanel/ImportExportMachiningPanelVM.vb +++ b/Icarus/ImportExportMachiningPanel/ImportExportMachiningPanelVM.vb @@ -264,7 +264,7 @@ Public Class ImportExportMachiningPanelVM Select Case m_WindowType Case WindowTypeEnum.MATERIAL Return Map.refMaterialDbVM.MaterialList.Any(Function(x) x.sName = MachiningName) - Case WindowTypeEnum.MACHINING + Case Else ' WindowTypeEnum.MACHINING Return Map.refMachiningDbVM.MachiningList.Any(Function(x) x.sName = MachiningName) End Select End Function diff --git a/Icarus/My Project/AssemblyInfo.vb b/Icarus/My Project/AssemblyInfo.vb index 7f91e30..c108264 100644 --- a/Icarus/My Project/AssemblyInfo.vb +++ b/Icarus/My Project/AssemblyInfo.vb @@ -70,5 +70,5 @@ Imports System.Windows ' by using the '*' as shown below: ' - - + + diff --git a/Icarus/OptionsWindow/OptionWindowVM.vb b/Icarus/OptionsWindow/OptionWindowVM.vb index 655e310..60438fc 100644 --- a/Icarus/OptionsWindow/OptionWindowVM.vb +++ b/Icarus/OptionsWindow/OptionWindowVM.vb @@ -1133,7 +1133,7 @@ Public Class OptionWindowVM ' aggiungo i file della Macchina Dim sMachineDir As String = Map.refMainWindowVM.MainWindowM.sMachinesRoot & "\" & sCurrMachineName If Directory.Exists(sMachineDir) Then - zip.AddItem(sMachineDir, sCurrMachineName) + zip.AddSelectedFiles( "name != *\.git\*.* and name != *.git*", sMachineDir, sCurrMachineName, True) End If ' salvo lo zip zip.Save() diff --git a/Icarus/ProjManager/ProjManagerVM.vb b/Icarus/ProjManager/ProjManagerVM.vb index 8458854..388ef98 100644 --- a/Icarus/ProjManager/ProjManagerVM.vb +++ b/Icarus/ProjManager/ProjManagerVM.vb @@ -88,34 +88,24 @@ Public Class ProjManagerVM Return EgtMsg(MSG_TOPCOMMANDBAR + 4) End Get End Property - Public ReadOnly Property InsertToolTip As String + Public ReadOnly Property ImportToolTip As String Get - Return EgtMsg(MSG_TOPCOMMANDBAR + 5) + Return "Import" End Get End Property - Public ReadOnly Property ImportBTL_ToolTip As String + Public ReadOnly Property ExportToolTip As String Get - Return EgtMsg(61840) + Return "Export" End Get End Property - Public ReadOnly Property UpdateBTL_ToolTip As String + Public ReadOnly Property OptionsToolTip As String Get - Return EgtMsg(61834) + Return "Options" End Get End Property - Public ReadOnly Property ExportProject_ToolTip As String + Public ReadOnly Property SendFeedbackToolTip As String Get - Return EgtMsg(61838) - End Get - End Property - Public ReadOnly Property ImportProject_ToolTip As String - Get - Return EgtMsg(61839) - End Get - End Property - Public ReadOnly Property GoToProd_ToolTip As String - Get - Return EgtMsg(61835) + Return "Send Feedback" End Get End Property diff --git a/Icarus/RibPanel/RibPanelVM.vb b/Icarus/RibPanel/RibPanelVM.vb index 22a65c4..d0c5130 100644 --- a/Icarus/RibPanel/RibPanelVM.vb +++ b/Icarus/RibPanel/RibPanelVM.vb @@ -794,6 +794,8 @@ Public Class RibPanelVM SelRib = m_RibList(m_RibList.Count - 1) Else SelRib = Nothing + m_bEdit_IsChecked = False + NotifyPropertyChanged(NameOf( bEdit_IsChecked)) End If NotifyPropertyChanged(NameOf(SelRib)) End If diff --git a/Icarus/ShellNumberPanel/ShellNumberPanelVM.vb b/Icarus/ShellNumberPanel/ShellNumberPanelVM.vb index 97ba11d..03408d0 100644 --- a/Icarus/ShellNumberPanel/ShellNumberPanelVM.vb +++ b/Icarus/ShellNumberPanel/ShellNumberPanelVM.vb @@ -777,6 +777,8 @@ Public Class ShellNumberPanelVM SelShellNumber = m_ShellNumberList(m_ShellNumberList.Count - 1) Else SelShellNumber = Nothing + m_bEdit_IsChecked = False + NotifyPropertyChanged(NameOf( bEdit_IsChecked)) End If NotifyPropertyChanged(NameOf(SelShellNumber)) End If diff --git a/Icarus/SliceManager/SliceManagerVM.vb b/Icarus/SliceManager/SliceManagerVM.vb index 1fe7722..232d8f6 100644 --- a/Icarus/SliceManager/SliceManagerVM.vb +++ b/Icarus/SliceManager/SliceManagerVM.vb @@ -132,6 +132,7 @@ Public Class SliceManagerVM Dim b3Print As BBox3d = Map.refDispositionPanelVM.GetSolidForReferenceBBox(Map.refTopPanelVM.SelPart) Return "[ " & DoubleToString(b3Print.DimX, 1) & " x " & DoubleToString(b3Print.DimY, 1) & " x " & DoubleToString(b3Print.DimZ, 1) & " ]" End If + Return "" End Get End Property Friend Sub UpdateDimensions() diff --git a/Icarus/StartMachPanel/StartMachPanelVM.vb b/Icarus/StartMachPanel/StartMachPanelVM.vb index eacae1a..56d713a 100644 --- a/Icarus/StartMachPanel/StartMachPanelVM.vb +++ b/Icarus/StartMachPanel/StartMachPanelVM.vb @@ -912,6 +912,8 @@ Public Class StartMachPanelVM SelStart = m_StartList(m_StartList.Count - 1) Else SelStart = Nothing + m_bEdit_IsChecked = False + NotifyPropertyChanged(NameOf( bEdit_IsChecked)) End If NotifyPropertyChanged(NameOf(SelStart)) End If diff --git a/Icarus/ViewPanel/ViewPanelV.xaml b/Icarus/ViewPanel/ViewPanelV.xaml index cff3a79..2145760 100644 --- a/Icarus/ViewPanel/ViewPanelV.xaml +++ b/Icarus/ViewPanel/ViewPanelV.xaml @@ -59,8 +59,8 @@ -