From b1e693b7bceb1427e84c3caa33b70a8eef854cfd Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Wed, 12 Jul 2017 16:16:52 +0000 Subject: [PATCH] Fix double-click on call with VHF features enabled. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7857 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 49797e8e6..d0ca5b3d9 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -3537,7 +3537,7 @@ void MainWindow::processMessage(QString const& messages, int position, bool ctrl // basic mode sanity checks auto const& parts = t2.split (' ', QString::SkipEmptyParts); if (parts.size () < 5) return; - auto const& mode = parts[4]; + auto const& mode = parts[4].mid(0,1); if (("JT9+JT65" == m_mode && !("@" == mode || "#" == mode)) || ("JT65" == m_mode && mode != "#") || ("JT9" == m_mode && mode != "@")