Adjust drawBluetoothConnectedIcon on TWatch

This commit is contained in:
Jason P
2025-06-24 14:13:28 -05:00
parent c5e3bc841e
commit cea5cd171a
2 changed files with 4 additions and 5 deletions

View File

@@ -142,9 +142,8 @@ void Screen::showOverlayBanner(const char *message, uint32_t durationMs, const c
{
#ifdef USE_EINK
EINK_ADD_FRAMEFLAG(dispdev, DEMAND_FAST); // Skip full refresh for all overlay menus
#endif
// Store the message and set the expirati
on timestamp
#endif
// Store the message and set the expiration timestamp
strncpy(NotificationRenderer::alertBannerMessage, message, 255);
NotificationRenderer::alertBannerMessage[255] = '\0'; // Ensure null termination
NotificationRenderer::alertBannerUntil = (durationMs == 0) ? 0 : millis() + durationMs;