From de33b04c23a56e98590cfc3bfdd99e14742c1d10 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Sun, 16 Jul 2017 15:11:35 +0000 Subject: [PATCH] Merged from trunk: ------------------------------------------------------------------------ r7857 | k1jt | 2017-07-12 17:16:52 +0100 (Wed, 12 Jul 2017) | 1 line Fix double-click on call with VHF features enabled. ------------------------------------------------------------------------ git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx-1.8@7904 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 076605245..e58fdea65 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 != "@")