From d3329224a96ed450f0723497cc3a52b7ca767449 Mon Sep 17 00:00:00 2001 From: Grzegorz Kaczmarek Date: Mon, 20 Jan 2025 22:14:16 +0100 Subject: [PATCH] UI: wake up display on volume changes --- openrtx/src/ui/default/ui.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/openrtx/src/ui/default/ui.c b/openrtx/src/ui/default/ui.c index cc5e4e33..66a62db6 100644 --- a/openrtx/src/ui/default/ui.c +++ b/openrtx/src/ui/default/ui.c @@ -1,8 +1,9 @@ /*************************************************************************** - * Copyright (C) 2020 - 2023 by Federico Amedeo Izzo IU2NUO, * + * Copyright (C) 2020 - 2025 by Federico Amedeo Izzo IU2NUO, * * Niccolò Izzo IU2KIN * * Frederik Saraci IU2NRO * * Silvano Seva IU2KWO * + * Grzegorz Kaczmarek SP6HFE * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -2466,7 +2467,7 @@ void ui_updateFSM(bool *sync_rtx) } #endif // CONFIG_GPS - if (txOngoing || rtx_rxSquelchOpen()) + if (txOngoing || rtx_rxSquelchOpen() || (state.volume != last_state.volume)) { _ui_exitStandby(now); return;