From a974658c981a5a76d2656358291dae7626c347b6 Mon Sep 17 00:00:00 2001 From: Ryzerth Date: Wed, 21 Jul 2021 15:44:50 +0200 Subject: [PATCH] Fixed checkbox with no name --- rtl_tcp_source/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtl_tcp_source/src/main.cpp b/rtl_tcp_source/src/main.cpp index bfa44618..63ace00b 100644 --- a/rtl_tcp_source/src/main.cpp +++ b/rtl_tcp_source/src/main.cpp @@ -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); }