diff --git a/CHANGELOG.md b/CHANGELOG.md index 0703fdd8cb..327c87522f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,11 @@ The format is a modified version of [Keep a Changelog](https://keepachangelog.co - `Fixed` - for any bug fixes. - `Other` - for technical stuff. -## [v0.19.0.0] - 2025-10-12 +## [Unreleased] +### Fixed +- Fix navigation pill background disappearing on older devices ([@Secozzi](https://github.com/Secozzi)) ([#114](https://github.com/quickdesh/Animiru/pull/114)) + +## [v0.19.0.0] - 2025-12-24 ### Changed - Remove circular edges, add background and sliding animations ([@Quickdev](https://github.com/quickdesh)) ([`8e45259`](https://github.com/quickdesh/Animiru/commit/8e45259)) - Use filter chips in recents tab ([@Quickdev](https://github.com/quickdesh)) ([`38c9c52`](https://github.com/quickdesh/Animiru/commit/38c9c52)) diff --git a/app/src/main/java/eu/kanade/tachiyomi/ui/home/NavigationPill.kt b/app/src/main/java/eu/kanade/tachiyomi/ui/home/NavigationPill.kt index 4354c206ae..5b6f74f2a7 100644 --- a/app/src/main/java/eu/kanade/tachiyomi/ui/home/NavigationPill.kt +++ b/app/src/main/java/eu/kanade/tachiyomi/ui/home/NavigationPill.kt @@ -364,15 +364,16 @@ private fun NavigationPillItemBackground( .height(pillItemHeight) .graphicsLayer { translationX = pillOffsetX.value.toPx() + } + .background( + color = MaterialTheme.colorScheme.secondaryContainer, shape = RoundedCornerShape( topStart = cornerSizes.value.topStart, topEnd = cornerSizes.value.topEnd, bottomStart = cornerSizes.value.bottomStart, bottomEnd = cornerSizes.value.bottomEnd, - ) - clip = true - } - .background(MaterialTheme.colorScheme.secondaryContainer), + ), + ), ) }