mirror of
https://github.com/SimpleMobileTools/Simple-Calendar.git
synced 2025-06-05 21:59:17 +02:00
Merge pull request #1303 from ikazuhiro/fix-weekends-highlight-in-weekly-view
fix second sutarday and sunday are not highlighted in weekly view
This commit is contained in:
@@ -165,8 +165,8 @@ fun getNowSeconds() = System.currentTimeMillis() / 1000L
|
|||||||
|
|
||||||
fun isWeekend(i: Int, isSundayFirst: Boolean): Boolean {
|
fun isWeekend(i: Int, isSundayFirst: Boolean): Boolean {
|
||||||
return if (isSundayFirst) {
|
return if (isSundayFirst) {
|
||||||
i == 0 || i == 6
|
i == 0 || i == 6 || i == 7 || i == 13
|
||||||
} else {
|
} else {
|
||||||
i == 5 || i == 6
|
i == 5 || i == 6 || i == 12 || i == 13
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user