Skip to content

Commit

Permalink
Change text for counter-based code again
Browse files Browse the repository at this point in the history
  • Loading branch information
ch1bo committed Nov 20, 2021
1 parent 4c771f6 commit ea50176
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MainView.mc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit ea50176

Please sign in to comment.