Allow DTR line to be forced alongside hardware flow control

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@5671 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Bill Somerville
2015-07-03 17:32:57 +00:00
parent 4303a955b7
commit c739bb88e8
2 changed files with 8 additions and 2 deletions
+4 -1
View File
@@ -1416,7 +1416,10 @@ void Configuration::impl::set_rig_invariants ()
}
}
ui_->CAT_serial_port_parameters_group_box->setEnabled (is_serial_CAT);
ui_->CAT_control_lines_group_box->setEnabled (is_serial_CAT && !is_hw_handshake);
ui_->CAT_control_lines_group_box->setEnabled (is_serial_CAT);
ui_->CAT_RTS_check_box->setEnabled (is_serial_CAT
&& ui_->CAT_control_lines_group_box->isChecked ()
&& !is_hw_handshake);
}
auto const& cat_port = ui_->CAT_port_combo_box->currentText ();