From 14eef4276252a173c898de394165d9a3e987d3ba Mon Sep 17 00:00:00 2001 From: Jm Casler Date: Sun, 10 Apr 2022 19:27:11 -0700 Subject: [PATCH] Disable indicator on welcome screen. --- src/graphics/Screen.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/graphics/Screen.cpp b/src/graphics/Screen.cpp index d00106f0a..7bc7ea170 100644 --- a/src/graphics/Screen.cpp +++ b/src/graphics/Screen.cpp @@ -1007,6 +1007,8 @@ void Screen::setWelcomeFrames() { if (address_found) { // DEBUG_MSG("showing Welcome frames\n"); + ui.disableAllIndicators(); + static FrameCallback welcomeFrames[] = {drawWelcomeScreen}; ui.setFrames(welcomeFrames, 1); ui.update();