From bcac9cbaa4e6a2cde3ab8519f9d8736fc4df4836 Mon Sep 17 00:00:00 2001 From: EiSiMo Date: Mon, 13 Apr 2026 19:26:27 +0200 Subject: [PATCH] Swap history UP/DOWN direction for intuitive navigation DOWN goes to older events (lower index), UP to newer. Co-Authored-By: Claude Opus 4.6 (1M context) --- source/HistoryDelegate.mc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/HistoryDelegate.mc b/source/HistoryDelegate.mc index 80eabf5..e3fbe32 100644 --- a/source/HistoryDelegate.mc +++ b/source/HistoryDelegate.mc @@ -13,12 +13,12 @@ class HistoryDelegate extends WatchUi.BehaviorDelegate { } function onNextPage() as Boolean { - _view.showNext(); + _view.showPrev(); return true; } function onPreviousPage() as Boolean { - _view.showPrev(); + _view.showNext(); return true; }