Fixed parameter isSundayFirst
of isWeekend
call
This commit is contained in:
parent
6722b0e627
commit
4bcc4dcca7
1 changed files with 1 additions and 1 deletions
|
@ -217,7 +217,7 @@ class WeekFragment : Fragment(), WeeklyCalendar {
|
|||
resources.getColor(R.color.theme_light_text_color)
|
||||
} else if (todayCode == dayCode) {
|
||||
primaryColor
|
||||
} else if (highlightWeekends && isWeekend(curDay.dayOfWeek, !config.isSundayFirst)) {
|
||||
} else if (highlightWeekends && isWeekend(curDay.dayOfWeek, true)) {
|
||||
config.highlightWeekendsColor
|
||||
} else {
|
||||
config.textColor
|
||||
|
|
Loading…
Reference in a new issue