fix live display of play/pause icon and menu labels.

This commit is contained in:
2025-08-09 17:23:16 -07:00
parent c3c5196b58
commit 4828ec87e5
2 changed files with 7 additions and 13 deletions

View File

@ -262,8 +262,8 @@ void DisplayMainPage() {
}
break;
case PARAM_MAIN_RUN:
mainText = F("RUN SRC");
switch (app.selected_sub_param) {
mainText = F("RUN");
switch (app.cv_run) {
case 0:
subText = F("NONE");
break;
@ -276,8 +276,8 @@ void DisplayMainPage() {
}
break;
case PARAM_MAIN_RESET:
mainText = F("RST SRC");
switch (app.selected_sub_param) {
mainText = F("RST");
switch (app.cv_reset) {
case 0:
subText = F("NONE");
break;