Skip to content

Commit

Permalink
fix(CalendarView): fix the date selecting error by difference of time…
Browse files Browse the repository at this point in the history
…zone
  • Loading branch information
TopProgrammer77 committed May 10, 2023
1 parent 0d98edf commit fffad38
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ internal DateTime GetDateAt(uint index)
date = pCalendar.GetDateTime();
m_lastVisitedDateAndIndex.first = date;
m_lastVisitedDateAndIndex.second = (int)(index);
var pDate = date.ToUniversalTime();
var pDate = date;

return pDate;
}
Expand Down

0 comments on commit fffad38

Please sign in to comment.