mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-10 04:37:37 +01:00
bugfixes
This commit is contained in:
parent
a1cbc69a65
commit
b3222003b1
@ -131,13 +131,13 @@ private:
|
||||
std::lock_guard lck(_this->vfoMtx);
|
||||
if (ImGui::Combo(CONCAT("##_rigctl_srv_vfo_", _this->name), &_this->vfoId, _this->vfoNamesTxt.c_str())) {
|
||||
_this->selectVfoByName(_this->vfoNames[_this->vfoId], false);
|
||||
}
|
||||
if (!_this->selectedVfo.empty()) {
|
||||
config.acquire();
|
||||
config.conf[_this->name]["vfo"] = _this->selectedVfo;
|
||||
config.release(true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ImGui::LeftLabel("Controlled Recorder");
|
||||
ImGui::SetNextItemWidth(menuWidth - ImGui::GetCursorPosX());
|
||||
|
@ -427,9 +427,10 @@ private:
|
||||
}
|
||||
|
||||
if (_this->tunerAgc || _this->gainList.size() == 0) { SmGui::BeginDisabled(); }
|
||||
|
||||
SmGui::LeftLabel("Gain");
|
||||
SmGui::FillWidth();
|
||||
SmGui::ForceSync();
|
||||
|
||||
// TODO: FIND ANOTHER WAY
|
||||
if (_this->serverMode) {
|
||||
if (SmGui::SliderInt(CONCAT("##_rtlsdr_gain_", _this->name), &_this->gainId, 0, _this->gainList.size() - 1, SmGui::FMT_STR_NONE)) {
|
||||
|
@ -239,6 +239,7 @@ private:
|
||||
}
|
||||
|
||||
if (_this->tunerAGC) { SmGui::BeginDisabled(); }
|
||||
SmGui::LeftLabel("Gain");
|
||||
SmGui::FillWidth();
|
||||
if (SmGui::SliderInt(CONCAT("##_gain_select_", _this->name), &_this->gain, 0, 28, SmGui::FMT_STR_NONE)) {
|
||||
if (_this->running) {
|
||||
|
Loading…
Reference in New Issue
Block a user