Skip to content

Commit 60f77b2

Browse files
committed
Use AbbreviatedDayNames instead of DayNames for day titles
1 parent c2ecac2 commit 60f77b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Calendar.Plugin/Shared/Controls/MonthDaysView.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ private void UpdateDayTitles()
256256

257257
foreach (var dayLabel in daysTitleControl.Children.OfType<Label>())
258258
{
259-
dayLabel.Text = Culture.DateTimeFormat.DayNames[dayNumber].Substring(0, 3).ToUpper();
259+
dayLabel.Text = Culture.DateTimeFormat.AbbreviatedDayNames[dayNumber].Substring(0, 3).ToUpper();
260260
dayNumber = (dayNumber + 1) % 7;
261261
}
262262
}

0 commit comments

Comments
 (0)