From 6721a13e99d5120f1e356c53f9fb29214c57e37f Mon Sep 17 00:00:00 2001 From: Philip Abbey Date: Sat, 28 Feb 2026 18:51:42 +0000 Subject: [PATCH] Update HomeAssistantApp.mc Faster custom Glance update. --- source/HomeAssistantApp.mc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/HomeAssistantApp.mc b/source/HomeAssistantApp.mc index e919c3a..1cf7806 100644 --- a/source/HomeAssistantApp.mc +++ b/source/HomeAssistantApp.mc @@ -998,11 +998,11 @@ class HomeAssistantApp extends Application.AppBase { mIsApp = false; // A bit unnecessary given the default mApiStatus = WatchUi.loadResource($.Rez.Strings.Checking) as Lang.String; Settings.update(); + glanceTemplate(); updateStatus(); mGlanceTimer = new Timer.Timer(); mGlanceTimer.start(method(:updateStatus), Globals.scApiBackoffMs, true); // Although this is now known immediately, wait before displaying so the status can be seen first. - glanceTemplate(); return [new HomeAssistantGlanceView(self)]; }