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