Restore the alert box for when a message is received via relay

This commit is contained in:
Jordan Sherer 2018-12-31 15:53:09 -05:00
parent a4cc87d7b4
commit 0a63433bd7

View File

@ -9567,6 +9567,10 @@ void MainWindow::processCommandActivity() {
// put message in inbox instead...
d.relayPath = relayPath;
m_rxCallsignCommandQueue[d.from].append(d);
QTimer::singleShot(500, this, [this](){
MessageBox::information_message(this, "A new message has been received.");
});
}
}