Still my Fav without an "e"

This commit is contained in:
Jason P 2025-06-06 11:33:10 -05:00
parent 37145abbfb
commit 2b5a7ab06d

View File

@ -271,7 +271,7 @@ void drawNodeInfo(OLEDDisplay *display, const OLEDDisplayUiState *state, int16_t
// === Create the shortName and title string === // === Create the shortName and title string ===
const char *shortName = (node->has_user && haveGlyphs(node->user.short_name)) ? node->user.short_name : "Node"; const char *shortName = (node->has_user && haveGlyphs(node->user.short_name)) ? node->user.short_name : "Node";
char titlestr[32] = {0}; char titlestr[32] = {0};
snprintf(titlestr, sizeof(titlestr), (SCREEN_WIDTH > 128) ? "Fave: %s" : "Fav: %s", shortName); snprintf(titlestr, sizeof(titlestr), "Fav: %s", shortName);
// === Draw battery/time/mail header (common across screens) === // === Draw battery/time/mail header (common across screens) ===
graphics::drawCommonHeader(display, x, y, titlestr); graphics::drawCommonHeader(display, x, y, titlestr);