From 48e66ec21e3fe1418b4a398c73f4184983ad64b0 Mon Sep 17 00:00:00 2001 From: Roman Bergman Date: Fri, 13 Mar 2026 09:11:30 +0100 Subject: [PATCH 1/2] fix issue#1115 Timeline indicator drawn above events/tasks so it stays visible at all times. --- .../main/kotlin/org/fossify/calendar/fragments/WeekFragment.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() From e8aae78e3b1e8ceaf8a5324cfc19b4df1afa21ca Mon Sep 17 00:00:00 2001 From: Roman Bergman Date: Fri, 13 Mar 2026 10:03:27 +0100 Subject: [PATCH 2/2] add issue #1115 to fixed --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) 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