Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
Loading