1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 13:47:01 -04:00

Sat Tracker: Update default TLEs to latest URLs. Add GUI error if TLEs not downloaded.

This commit is contained in:
srcejon
2024-01-17 11:45:36 +00:00
parent 9ce5653beb
commit 86f1024733
4 changed files with 38 additions and 3 deletions
@@ -199,6 +199,13 @@ bool SatelliteTrackerGUI::handleMessage(const Message& message)
return true;
}
else if (SatelliteTracker::MsgError::match(message))
{
SatelliteTracker::MsgError& errorMsg = (SatelliteTracker::MsgError&) message;
QString error = errorMsg.getError();
QMessageBox::critical(this, "Satellite Tracker", error);
return true;
}
return false;
}