From 2fdb65d86f61861801740bf3bc064b7decc94614 Mon Sep 17 00:00:00 2001 From: gamosoft_cp Date: Fri, 12 Jul 2013 17:11:36 +0000 Subject: [PATCH] Disabled check for current date selection, so the TODAY link will work again. --- Outlook2013TodoAddIn/CustomCalendar.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Outlook2013TodoAddIn/CustomCalendar.cs b/Outlook2013TodoAddIn/CustomCalendar.cs index 4180105..32b2e47 100644 --- a/Outlook2013TodoAddIn/CustomCalendar.cs +++ b/Outlook2013TodoAddIn/CustomCalendar.cs @@ -38,12 +38,14 @@ namespace Outlook2013TodoAddIn } 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; // this.UpdateCalendar(); this.OnSelectedDateChanged(EventArgs.Empty); - } + //} } }