Merge pull request #342 from telerik/Nasko/segment-updateselection

Remove irrelevant code that throws unexpectedly error and make the se…
This commit is contained in:
Atanas Popatanasov 2018-11-19 11:07:17 +02:00 коммит произвёл GitHub
Родитель 11faa7b2ad a7d4f7bdc8
Коммит 35f08394fd
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 10 удалений

Просмотреть файл

@ -123,16 +123,8 @@ namespace Telerik.UI.Xaml.Controls.Input
}
else
{
try
{
throw new ArgumentException("Value does not fall within the expected range.");
}
finally
{
control.isInternalChange = true;
control.SelectedIndex = oldSelectedIndex;
control.isInternalChange = false;
}
var item = control.GetItemByIndex(selectedIndex);
control.UpdateSelectedValue(item.GetPropertyValue(control.SelectedValuePath));
}
}
else