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
This commit is contained in:
Bill Somerville 2017-07-16 15:11:35 +00:00
parent d6c616f5e1
commit de33b04c23

View File

@ -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 != "@")