From 8186a9aab1254be0724d4afeda7f521c67e9aa17 Mon Sep 17 00:00:00 2001 From: EiSiMo Date: Wed, 15 Apr 2026 09:54:26 +0200 Subject: [PATCH] Use 5 decimals for coordinates in history view Fixes #9 Co-Authored-By: Claude Opus 4.6 (1M context) --- source/HistoryView.mc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/HistoryView.mc b/source/HistoryView.mc index ea39d05..c784725 100644 --- a/source/HistoryView.mc +++ b/source/HistoryView.mc @@ -183,7 +183,7 @@ class HistoryView extends WatchUi.View { } private function _formatCoords(lat as Float, lon as Float) as String { - return lat.format("%.4f") + ", " + lon.format("%.4f"); + return lat.format("%.5f") + ", " + lon.format("%.5f"); } private function _formatTimestamp(ts as Number) as String {