Fixed frequency select not updating when disabling VFO

This commit is contained in:
Ryzerth
2021-04-24 19:26:22 +02:00
parent 35122708be
commit 8305750016
3 changed files with 6 additions and 4 deletions

View File

@ -234,10 +234,12 @@ namespace ImGui {
for (auto const& [name, vfo] : vfos) {
available = true;
selectedVFO = name;
selectedVFOChanged = true;
return;
}
if (!available) {
selectedVFO = "";
selectedVFOChanged = true;
}
}