diff --git a/app/src/main/kotlin/com/simplemobiletools/calendar/extensions/Context.kt b/app/src/main/kotlin/com/simplemobiletools/calendar/extensions/Context.kt index 3d4f554a4..9899a51b7 100644 --- a/app/src/main/kotlin/com/simplemobiletools/calendar/extensions/Context.kt +++ b/app/src/main/kotlin/com/simplemobiletools/calendar/extensions/Context.kt @@ -293,10 +293,10 @@ private fun addTodaysBackground(textView: TextView, res: Resources, dayLabelHeig textView.addResizedBackgroundDrawable(res, dayLabelHeight, mPrimaryColor, R.drawable.monthly_today_circle) fun Context.addDayEvents(day: DayMonthly, linearLayout: LinearLayout, res: Resources, dividerMargin: Int) { - val backgroundDrawable = res.getDrawable(R.drawable.day_monthly_event_background) val eventLayoutParams = LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT) day.dayEvents.sortedWith(compareBy({ it.startTS }, { it.endTS }, { it.title })).forEach { + val backgroundDrawable = res.getDrawable(R.drawable.day_monthly_event_background) backgroundDrawable.applyColorFilter(it.color) eventLayoutParams.setMargins(dividerMargin, 0, dividerMargin, dividerMargin) diff --git a/app/src/main/kotlin/com/simplemobiletools/calendar/fragments/DayFragment.kt b/app/src/main/kotlin/com/simplemobiletools/calendar/fragments/DayFragment.kt index 53c421dc8..b87e83c3f 100644 --- a/app/src/main/kotlin/com/simplemobiletools/calendar/fragments/DayFragment.kt +++ b/app/src/main/kotlin/com/simplemobiletools/calendar/fragments/DayFragment.kt @@ -117,21 +117,20 @@ class DayFragment : Fragment(), DBHelper.EventUpdateListener, DeleteEventsListen } private fun receivedEvents(events: List) { - val newHash = events.hashCode() + val filtered = context?.getFilteredEvents(events) ?: ArrayList() + val newHash = filtered.hashCode() if (newHash == lastHash || !isAdded) { return } lastHash = newHash val replaceDescription = context!!.config.replaceDescription - val sorted = ArrayList(events.sortedWith(compareBy({ it.startTS }, { it.endTS }, { it.title }, { + val sorted = ArrayList(filtered.sortedWith(compareBy({ it.startTS }, { it.endTS }, { it.title }, { if (replaceDescription) it.location else it.description }))) - val filtered = context?.getFilteredEvents(sorted) ?: ArrayList() - activity?.runOnUiThread { - updateEvents(filtered) + updateEvents(sorted) } }