From bb33a23543b9d4ab4708d6e0ad6b8e2d3cb5f2b1 Mon Sep 17 00:00:00 2001 From: Jakub <106778416+MarekZegare4@users.noreply.github.com> Date: Mon, 25 May 2026 19:26:02 +0200 Subject: [PATCH] refactor(ui): disable GPS toggle in sensors page --- examples/companion_radio/ui-new/UITask.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/companion_radio/ui-new/UITask.cpp b/examples/companion_radio/ui-new/UITask.cpp index 2341e060..4874da5f 100644 --- a/examples/companion_radio/ui-new/UITask.cpp +++ b/examples/companion_radio/ui-new/UITask.cpp @@ -1020,7 +1020,7 @@ public: #endif #if UI_SENSORS_PAGE == 1 if (c == KEY_ENTER && _page == HomePage::SENSORS) { - _task->toggleGPS(); + // _task->toggleGPS(); next_sensors_refresh=0; return true; }