From e48b5c6035e6e85258409cab7de5446122eba9be Mon Sep 17 00:00:00 2001 From: AlexandreRouma Date: Mon, 30 Aug 2021 16:37:29 +0200 Subject: [PATCH] Added missing refresh button when in low IF mode --- sdrplay_source/src/main.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sdrplay_source/src/main.cpp b/sdrplay_source/src/main.cpp index bfeb988c..ef79103a 100644 --- a/sdrplay_source/src/main.cpp +++ b/sdrplay_source/src/main.cpp @@ -713,6 +713,12 @@ private: config.release(true); } } + else { + if (ImGui::Button(CONCAT("Refresh##sdrplay_refresh", _this->name), ImVec2(menuWidth, 0))) { + _this->refresh(); + _this->selectByName(_this->selectedName); + } + } ImGui::Text("IF Mode"); ImGui::SameLine();