mirror of
https://github.com/SimpleMobileTools/Simple-Calendar.git
synced 2025-02-17 12:20:51 +01:00
fix second sutarday and sunday are not highlighted in weekly view
This commit is contained in:
parent
75dfe35bff
commit
5819760b55
@ -164,9 +164,5 @@ const val REMINDER_EMAIL = 1
|
||||
fun getNowSeconds() = System.currentTimeMillis() / 1000L
|
||||
|
||||
fun isWeekend(i: Int, isSundayFirst: Boolean): Boolean {
|
||||
return if (isSundayFirst) {
|
||||
i == 0 || i == 6
|
||||
} else {
|
||||
i == 5 || i == 6
|
||||
}
|
||||
return (i + if (isSundayFirst) 6 else 0) % 7 > 4
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user