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) <noreply@anthropic.com>
This commit is contained in:
EiSiMo 2026-04-13 19:26:27 +02:00
parent 8dea0c3854
commit bcac9cbaa4

View file

@ -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;
}