diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f5f0c34b..d3fdc2d04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Fixed +- Current time indicator is drawn behind events/tasks in Week view (#1115) ## [1.10.3] - 2026-02-14 ### Changed diff --git a/app/src/main/kotlin/org/fossify/calendar/fragments/WeekFragment.kt b/app/src/main/kotlin/org/fossify/calendar/fragments/WeekFragment.kt index 67fe929d0..77e796015 100644 --- a/app/src/main/kotlin/org/fossify/calendar/fragments/WeekFragment.kt +++ b/app/src/main/kotlin/org/fossify/calendar/fragments/WeekFragment.kt @@ -849,7 +849,7 @@ class WeekFragment : Fragment(), WeeklyCalendar { val weeklyViewDays = config.weeklyViewDays currentTimeView = WeekNowMarkerBinding.inflate(layoutInflater).root.apply { applyColorFilter(primaryColor) - binding.weekEventsHolder.addView(this, 0) + binding.weekEventsHolder.addView(this) val extraWidth = res.getDimension(org.fossify.commons.R.dimen.activity_margin).toInt() val markerHeight = res.getDimension(R.dimen.weekly_view_now_height).toInt()