From 16610d4572f775f077af8f8448ef9ddb1224e2db Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Tue, 13 Mar 2018 14:50:47 +0000 Subject: [PATCH] Add yet another data mode enumeration value from HRD git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8558 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- HRDTransceiver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HRDTransceiver.cpp b/HRDTransceiver.cpp index c24e8ed53..3b9f90e23 100644 --- a/HRDTransceiver.cpp +++ b/HRDTransceiver.cpp @@ -285,7 +285,7 @@ int HRDTransceiver::do_start () // appears to be an HRD defect and we cannot work around it if ((data_mode_dropdown_ = find_dropdown (QRegExp ("^(Data)$"))) >= 0) { - data_mode_dropdown_selection_on_ = find_dropdown_selection (data_mode_dropdown_, QRegExp ("^(On|D1|D1-FIL1)$")); + data_mode_dropdown_selection_on_ = find_dropdown_selection (data_mode_dropdown_, QRegExp ("^(On|Data1|D1|D1-FIL1)$")); data_mode_dropdown_selection_off_ = find_dropdown_selection (data_mode_dropdown_, QRegExp ("^(Off)$")); }