From ea50176f6bd1d790ec4de031daca0de3e0463007 Mon Sep 17 00:00:00 2001 From: Sebastian Nagel Date: Sat, 20 Nov 2021 17:58:59 +0100 Subject: [PATCH] Change text for counter-based code again --- src/MainView.mc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MainView.mc b/src/MainView.mc index d0bc3f6..1705834 100644 --- a/src/MainView.mc +++ b/src/MainView.mc @@ -70,7 +70,7 @@ class MainView extends WatchUi.View { drawCode(dc, codeColor, codeFont, provider.code_); // Instructions drawBelowCode(dc, codeHeight, Graphics.FONT_SMALL, - "MENU for next code"); + "ENTER for next code"); break; } } @@ -120,7 +120,7 @@ class MainViewDelegate extends WatchUi.BehaviorDelegate { function onKey(event) { var key = event.getKey(); logf(DEBUG, "onKey $1$", [key]); - if (key == KEY_MENU) { + if (key == KEY_MENU || key == KEY_ENTER) { var provider = currentProvider(); switch (provider) { case instanceof CounterBasedProvider: