From 60658a7ad31bf61126a4ee6c30bd5d5c75042544 Mon Sep 17 00:00:00 2001 From: Erik Andresen Date: Tue, 4 Jul 2023 21:58:04 +0200 Subject: [PATCH] openstmap: Fix gps widget check --- apps/openstmap/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/openstmap/app.js b/apps/openstmap/app.js index dd0120857f..88883b6d6a 100644 --- a/apps/openstmap/app.js +++ b/apps/openstmap/app.js @@ -82,7 +82,7 @@ Bangle.setGPSPower(1, "app"); if (HASWIDGETS) { Bangle.loadWidgets(); - if (WIDGETS["GPS"]) { // one GPS Widget is enough + if (!WIDGETS["gps"]) { // one GPS Widget is enough WIDGETS["sats"] = { area:"tl", width:48, draw:w=>{ var txt = (0|fix.satellites)+" Sats"; if (!fix.fix) txt += "\nNO FIX";