From 735119b5deb2cc6b575d1e80aa9498cd9187241f Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Wed, 3 Sep 2014 21:59:04 +0000 Subject: [PATCH] Do not overwrite CAT/network port name after reading settings. The CAT/network port name was being overwritten with the CAT port name during startup so if the port was a network device it was not being persistent across restarts. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@4243 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- Configuration.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Configuration.cpp b/Configuration.cpp index 7d76a7308..b11ddfb8a 100644 --- a/Configuration.cpp +++ b/Configuration.cpp @@ -858,7 +858,6 @@ void Configuration::impl::initialise_models () ui_->rig_combo_box->setCurrentText (rig_params_.rig_name_); ui_->TX_mode_button_group->button (data_mode_)->setChecked (true); ui_->split_mode_button_group->button (rig_params_.split_mode_)->setChecked (true); - ui_->CAT_port_combo_box->setCurrentText (rig_params_.CAT_serial_port_); ui_->CAT_serial_baud_combo_box->setCurrentText (QString::number (rig_params_.CAT_baudrate_)); ui_->CAT_data_bits_button_group->button (rig_params_.CAT_data_bits_)->setChecked (true); ui_->CAT_stop_bits_button_group->button (rig_params_.CAT_stop_bits_)->setChecked (true);