Fixed stereo checkbox in radio module

This commit is contained in:
Ryzerth 2021-07-26 18:21:06 +02:00
parent 03a2f41c04
commit ffed602246

View File

@ -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;