From c791c86bee16085fcc11a8ffa42db115f55a8393 Mon Sep 17 00:00:00 2001 From: xBelladonna Date: Wed, 22 Jan 2020 22:44:17 +0930 Subject: [PATCH] Fix display startup sequence Signed-off-by: xBelladonna --- pwnagotchi/ui/view.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pwnagotchi/ui/view.py b/pwnagotchi/ui/view.py index 031ed8e..974a968 100644 --- a/pwnagotchi/ui/view.py +++ b/pwnagotchi/ui/view.py @@ -138,6 +138,7 @@ class View(object): def on_starting(self): self.set('status', self._voice.on_starting() + ("\n(v%s)" % pwnagotchi.__version__)) self.set('face', faces.AWAKE) + self.update() def on_ai_ready(self): self.set('mode', ' AI')