From aa9014f2f5f8f8b30e4d43ebfb62cd6d13d1fe0e Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Mon, 6 Aug 2018 17:11:31 -0400 Subject: [PATCH] Escape key clears message queue too --- mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/mainwindow.cpp b/mainwindow.cpp index 9dd5421..1a63869 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -2155,6 +2155,7 @@ void MainWindow::keyPressEvent (QKeyEvent * e) switch (e->key()) { case Qt::Key_Escape: stopTx(); + on_stopTxButton_clicked(); return; }