From 2f610bd96836f0477dcb4ef69b3a39ee8e808cd5 Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Sat, 16 Jul 2016 16:56:45 +0000 Subject: [PATCH] EgtCAM5 : - corretta notifica combobox su selezione alla costruzione (per controller). --- .../InputExpander/InputExpanderViewModel.vb | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/ProjectPage/OptionPanel/DrawOptionPanel/InputExpander/InputExpanderViewModel.vb b/ProjectPage/OptionPanel/DrawOptionPanel/InputExpander/InputExpanderViewModel.vb index 054116d..2f7cabd 100644 --- a/ProjectPage/OptionPanel/DrawOptionPanel/InputExpander/InputExpanderViewModel.vb +++ b/ProjectPage/OptionPanel/DrawOptionPanel/InputExpander/InputExpanderViewModel.vb @@ -134,11 +134,9 @@ Namespace EgtCAM5 Return m_ComboSelectedIndex End Get Set(value As Integer) - If value <> m_ComboSelectedIndex Then - Application.Msn.NotifyColleagues(Application.SETLASTINTEGER, value) - m_ComboSelectedIndex = value - OnPropertyChanged("ComboSelectedIndex") - End If + Application.Msn.NotifyColleagues(Application.SETLASTINTEGER, value) + m_ComboSelectedIndex = value + OnPropertyChanged("ComboSelectedIndex") End Set End Property