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:
parent
8dea0c3854
commit
bcac9cbaa4
1 changed files with 2 additions and 2 deletions
|
|
@ -13,12 +13,12 @@ class HistoryDelegate extends WatchUi.BehaviorDelegate {
|
||||||
}
|
}
|
||||||
|
|
||||||
function onNextPage() as Boolean {
|
function onNextPage() as Boolean {
|
||||||
_view.showNext();
|
_view.showPrev();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
function onPreviousPage() as Boolean {
|
function onPreviousPage() as Boolean {
|
||||||
_view.showPrev();
|
_view.showNext();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue