From 0a63433bd7b7f16c4fa448487264ff4a38c42d4c Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Mon, 31 Dec 2018 15:53:09 -0500 Subject: [PATCH] Restore the alert box for when a message is received via relay --- mainwindow.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mainwindow.cpp b/mainwindow.cpp index 59a66dc..3cbb728 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -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."); + }); } }