Merge pull request #323 from telerik/snenchev/d-calendar_key_exception

-Fix calendar exception thrown when switching cells
This commit is contained in:
Atanas Popatanasov 2018-09-20 23:51:05 -07:00 коммит произвёл GitHub
Родитель 5b2e910be8 b05e9bc241
Коммит 8c5f3caa0f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -259,7 +259,7 @@ namespace Telerik.UI.Xaml.Controls.Input.Calendar
this.currentCellsToUpdate.Clear();
}
if (oldCurrentDate != DateTime.MinValue && oldCurrentDate != newCurrentDate)
if (oldCurrentDate != DateTime.MinValue && oldCurrentDate.Date != newCurrentDate.Date)
{
oldCurrentDate = CalendarMathHelper.GetCellDateForViewLevel(oldCurrentDate, this.Owner.DisplayMode);
CalendarCellModel previousCell = this.Owner.GetCellByDate(oldCurrentDate);