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
This commit is contained in:
Joe Taylor 2017-07-12 16:16:52 +00:00
parent 0ff059cdd6
commit b1e693b7bc
1 changed files with 1 additions and 1 deletions

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