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