Unify history text colors - PLZ and coords in white
Fixes #8 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
8186a9aab1
commit
bfcb132a87
1 changed files with 2 additions and 2 deletions
|
|
@ -157,7 +157,7 @@ class HistoryView extends WatchUi.View {
|
|||
lines.add([cached["addr"] as String, Config.COLOR_FG]);
|
||||
var zip = cached["zip"] as String or Null;
|
||||
if (zip != null) {
|
||||
lines.add([zip, 0x888888]);
|
||||
lines.add([zip, Config.COLOR_FG]);
|
||||
}
|
||||
}
|
||||
} else if (_addressLoading) {
|
||||
|
|
@ -166,7 +166,7 @@ class HistoryView extends WatchUi.View {
|
|||
|
||||
// 4: Coordinates (always, if available).
|
||||
if (evt.lat != null && evt.lon != null) {
|
||||
lines.add([_formatCoords(evt.lat as Float, evt.lon as Float), 0x888888]);
|
||||
lines.add([_formatCoords(evt.lat as Float, evt.lon as Float), Config.COLOR_FG]);
|
||||
}
|
||||
|
||||
// 5: Counter.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue