summaryrefslogtreecommitdiff
path: root/android/app/src/main/java
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-07-15 01:37:58 +0000
committerPeter Stone <thepeterstone@gmail.com>2026-07-16 02:48:28 +0000
commitb1b21d6573cf334126c0c84b60e256ca11a6293b (patch)
tree6eb18fa0733e440354a38770c0bd071f40ac55a9 /android/app/src/main/java
parent16649b7b00ed0b3be03aa039922536a853993597 (diff)
fix(widget): remove red text color for overdue tasks
Overdue and non-overdue tasks now render with the same plain title color; no more red highlighting for overdue items. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01VTUSAEKfsPc6WGDq45yPHD
Diffstat (limited to 'android/app/src/main/java')
-rw-r--r--android/app/src/main/java/org/terst/doot/widget/ui/DootWidget.kt4
1 files changed, 1 insertions, 3 deletions
diff --git a/android/app/src/main/java/org/terst/doot/widget/ui/DootWidget.kt b/android/app/src/main/java/org/terst/doot/widget/ui/DootWidget.kt
index 6a25d2f..e762d2a 100644
--- a/android/app/src/main/java/org/terst/doot/widget/ui/DootWidget.kt
+++ b/android/app/src/main/java/org/terst/doot/widget/ui/DootWidget.kt
@@ -483,9 +483,7 @@ fun TaskRow(task: WidgetItem, textSize: WidgetTextSize) {
Text(
text = task.title,
style = TextStyle(
- color = ColorProvider(
- if (task.isOverdue) Color(0xFFF87171).copy(alpha = 0.75f) else Color(0xFFDDDDDD.toInt())
- ),
+ color = ColorProvider(Color(0xFFDDDDDD.toInt())),
fontSize = textSize.scaledContentSize(14),
fontWeight = textSize.scaledContentWeight(FontWeight.Normal)
),