mirror of
https://github.com/SimpleMobileTools/Simple-Calendar.git
synced 2025-06-05 21:59:17 +02:00
Fixed parameter isSundayFirst
of isWeekend
call
This commit is contained in:
@ -217,7 +217,7 @@ class WeekFragment : Fragment(), WeeklyCalendar {
|
|||||||
resources.getColor(R.color.theme_light_text_color)
|
resources.getColor(R.color.theme_light_text_color)
|
||||||
} else if (todayCode == dayCode) {
|
} else if (todayCode == dayCode) {
|
||||||
primaryColor
|
primaryColor
|
||||||
} else if (highlightWeekends && isWeekend(curDay.dayOfWeek, !config.isSundayFirst)) {
|
} else if (highlightWeekends && isWeekend(curDay.dayOfWeek, true)) {
|
||||||
config.highlightWeekendsColor
|
config.highlightWeekendsColor
|
||||||
} else {
|
} else {
|
||||||
config.textColor
|
config.textColor
|
||||||
|
Reference in New Issue
Block a user