Disabled check for current date selection, so the TODAY link will work again.

This commit is contained in:
gamosoft_cp 2013-07-12 17:11:36 +00:00
parent 575d950f41
commit 2fdb65d86f

View File

@ -38,12 +38,14 @@ namespace Outlook2013TodoAddIn
} }
set set
{ {
if (_selectedDate != value) // Check if the day is the same we're trying to set
{ //if (_selectedDate != value)
//{
// Commented out, because if the user clicks on the TODAY link to refresh today's view it wouldn't work
_selectedDate = value; _selectedDate = value;
// this.UpdateCalendar(); // this.UpdateCalendar();
this.OnSelectedDateChanged(EventArgs.Empty); this.OnSelectedDateChanged(EventArgs.Empty);
} //}
} }
} }