1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-12-23 10:05:46 -05:00

Remote input GUI: set status to OK if info API is OK

This commit is contained in:
f4exb 2021-12-27 19:03:55 +01:00
parent 5a11ef6a8b
commit 766695d99d

View File

@ -221,6 +221,7 @@ bool RemoteInputGui::handleMessage(const Message& message)
ui->apiAddressLabel->setStyleSheet("QLabel { background-color : green; }");
const RemoteInput::MsgReportRemoteFixedData& report = (const RemoteInput::MsgReportRemoteFixedData&) message;
displayRemoteFixedData(report.getData());
ui->statusText->setText("OK");
return true;
}
else if (RemoteInput::MsgReportRemoteAPIError::match(message))