1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 22:14:45 -04:00

SoapySDR support: fixed StringRangeGUI::setValue

This commit is contained in:
f4exb
2018-11-08 02:28:01 +01:00
parent ef672300d2
commit 48340f253a
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ void StringRangeGUI::setValue(const std::string& value)
for (const auto &it : itemValues)
{
if (it >= value)
if (it == value)
{
ui->rangeCombo->blockSignals(true);
ui->rangeCombo->setCurrentIndex(index);