diff --git a/resources/images/logo_startup/Solo_Logo.png b/resources/images/logo_startup/Solo_Logo.png index 45438ec..272b2bf 100644 Binary files a/resources/images/logo_startup/Solo_Logo.png and b/resources/images/logo_startup/Solo_Logo.png differ diff --git a/src/ui_splash.cpp b/src/ui_splash.cpp index e7f474c..7aa3a81 100644 --- a/src/ui_splash.cpp +++ b/src/ui_splash.cpp @@ -39,10 +39,7 @@ bool UiSplash::update() } } - if (versionDrawRequested) { - drawVersion(); - versionDrawRequested = false; - } + drawVersion(); uint16_t w = scale(millis, 0U, BootEstimateMillis, 0U, Gfx::WIDTH); Gfx::fillRect(Gfx::Rect(0, Gfx::HEIGHT - ProgressBarH, w, ProgressBarH), UiColor::Green); @@ -50,15 +47,6 @@ bool UiSplash::update() return false; } -void UiSplash::onAButtonEvent(Button *b, Button::Event e) -{ - UNUSED(b); - - if (e == Button::ClickRelease) { - versionDrawRequested = true; - } -} - void UiSplash::drawVersion() { const Gfx::FontAsset & f = HelveticaNeueLTProRoman; diff --git a/src/ui_splash.h b/src/ui_splash.h index f152f26..f32fed8 100644 --- a/src/ui_splash.h +++ b/src/ui_splash.h @@ -10,7 +10,6 @@ class UiSplash void init(); bool update(); - void onAButtonEvent(Button *b, Button::Event e); private: static const unsigned MinSplashMillis = 6000;