From ffed60224669fd7593a5a4f62350560d6873de7d Mon Sep 17 00:00:00 2001 From: Ryzerth Date: Mon, 26 Jul 2021 18:21:06 +0200 Subject: [PATCH] Fixed stereo checkbox in radio module --- radio/src/wfm_demod.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radio/src/wfm_demod.h b/radio/src/wfm_demod.h index d0c898c5..514d2b25 100644 --- a/radio/src/wfm_demod.h +++ b/radio/src/wfm_demod.h @@ -200,7 +200,7 @@ public: _config->release(true); } - if (ImGui::Checkbox("Stereo##radio_wfm_demod", &stereo)) { + if (ImGui::Checkbox(("Stereo##_radio_wfm_stereo_" + uiPrefix).c_str(), &stereo)) { setStereo(stereo); _config->acquire(); _config->conf[uiPrefix]["WFM"]["stereo"] = stereo;