Skip to content

Commit

Permalink
Fix s-meter and DTMF overlaying problem
Browse files Browse the repository at this point in the history
  • Loading branch information
egzumer committed Dec 31, 2023
1 parent 429cffc commit ac8c51d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ void DisplayRSSIBar(const bool now)
0b00011000,
};

if (gEeprom.KEY_LOCK && gKeypadLocked > 0)
if ((gEeprom.KEY_LOCK && gKeypadLocked > 0) || center_line != CENTER_LINE_RSSI)
return; // display is in use

if (gCurrentFunction == FUNCTION_TRANSMIT ||
Expand Down

0 comments on commit ac8c51d

Please sign in to comment.