Fixed checkbox with no name

This commit is contained in:
Ryzerth 2021-07-21 15:44:50 +02:00
parent 465dc9e5dc
commit a974658c98

View File

@ -221,7 +221,7 @@ private:
}
if (_this->tunerAGC) { style::endDisabled(); }
if (ImGui::Checkbox(CONCAT("##_biast_select_", _this->name), &_this->biasTee)) {
if (ImGui::Checkbox(CONCAT("Bias-T##_biast_select_", _this->name), &_this->biasTee)) {
if (_this->running) {
_this->client.setBiasTee(_this->biasTee);
}