fix #614, properly highlight running all-day events at event list view
This commit is contained in:
parent
833499026c
commit
3d6b793de8
|
@ -157,13 +157,11 @@ class EventListAdapter(activity: SimpleActivity, var listItems: ArrayList<ListIt
|
|||
|
||||
var startTextColor = textColor
|
||||
var endTextColor = textColor
|
||||
if (listEvent.startTS <= now && listEvent.endTS <= now) {
|
||||
if (listEvent.isAllDay) {
|
||||
if (Formatter.getDayCodeFromTS(listEvent.startTS) == Formatter.getDayCodeFromTS(now)) {
|
||||
startTextColor = primaryColor
|
||||
}
|
||||
if (listEvent.isAllDay) {
|
||||
if (Formatter.getDayCodeFromTS(listEvent.startTS) == Formatter.getDayCodeFromTS(now)) {
|
||||
startTextColor = primaryColor
|
||||
}
|
||||
|
||||
} else if (listEvent.startTS <= now && listEvent.endTS <= now) {
|
||||
if (dimPastEvents && listEvent.isPastEvent) {
|
||||
startTextColor = startTextColor.adjustAlpha(LOW_ALPHA)
|
||||
endTextColor = endTextColor.adjustAlpha(LOW_ALPHA)
|
||||
|
|
Loading…
Reference in New Issue