From 2045434e042438a409ab9d735c2f104d047612f8 Mon Sep 17 00:00:00 2001 From: Howard Su Date: Thu, 20 Aug 2020 11:26:41 +0800 Subject: [PATCH] Add indicate when in value chaning mode Display '>' in front of the value when we are changing the value. This make it clear that we are changing the value or changing the menu item. --- QCX-SSB.ino | 1 + 1 file changed, 1 insertion(+) diff --git a/QCX-SSB.ino b/QCX-SSB.ino index 3832bde..82ff52d 100644 --- a/QCX-SSB.ino +++ b/QCX-SSB.ino @@ -2827,6 +2827,7 @@ template void paramAction(uint8_t action, T& value, const __FlashStr lcd.print(menuid); lcd.print(' '); lcd.print(label); lcd_blanks(); lcd_blanks(); lcd.setCursor(0, 1); // value on next line + if (menumode == 2) lcd.print('>'); } else { // UPDATE (not in menu) lcd.setCursor(0, 1); lcd.print(label); lcd.print(F(": ")); }