summaryrefslogtreecommitdiff
path: root/android-app
diff options
context:
space:
mode:
authorClaude <noreply@anthropic.com>2026-05-20 16:32:10 +0000
committerClaude <noreply@anthropic.com>2026-05-20 16:32:10 +0000
commitfbb6afd05383cb1a72597ed3a8e853d029645f48 (patch)
treecc7e680141234923fb5585d58356e24a73a92cb8 /android-app
parenta45ca70410c3a6b15051f26ef4325be3de8d6c37 (diff)
Halve past track opacity (0.45 → 0.22)
https://claude.ai/code/session_01YUbuZNDAoLea4cf9UGQ9qn
Diffstat (limited to 'android-app')
-rw-r--r--android-app/app/src/main/kotlin/org/terst/nav/ui/MapHandler.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/android-app/app/src/main/kotlin/org/terst/nav/ui/MapHandler.kt b/android-app/app/src/main/kotlin/org/terst/nav/ui/MapHandler.kt
index 5449db2..0c31024 100644
--- a/android-app/app/src/main/kotlin/org/terst/nav/ui/MapHandler.kt
+++ b/android-app/app/src/main/kotlin/org/terst/nav/ui/MapHandler.kt
@@ -315,7 +315,7 @@ class MapHandler(private val maplibreMap: MapLibreMap) {
style.addLayer(LineLayer(TRACK_PAST_DIM_LAYER_ID, TRACK_PAST_DIM_SOURCE_ID).apply {
setProperties(
PropertyFactory.lineColor("#0B3050"),
- PropertyFactory.lineOpacity(0.45f),
+ PropertyFactory.lineOpacity(0.22f),
PropertyFactory.lineWidth(2.5f),
PropertyFactory.lineCap("round"),
PropertyFactory.lineJoin("round")