1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-10-01 01:06:35 -04:00

Web API: RTLSDR GUI settings update

This commit is contained in:
f4exb 2017-12-08 14:40:12 +01:00
parent 34cb4aa89b
commit 33bca44fc1

View File

@ -138,6 +138,13 @@ bool RTLSDRGui::handleMessage(const Message& message)
displayGains(); displayGains();
return true; return true;
} }
else if (RTLSDRInput::MsgConfigureRTLSDR::match(message))
{
const RTLSDRInput::MsgConfigureRTLSDR& cfg = (RTLSDRInput::MsgConfigureRTLSDR&) message;
m_settings = cfg.getSettings();
displaySettings();
return true;
}
else else
{ {
return false; return false;