From: Uwe Hermann Date: Thu, 7 Nov 2019 22:48:01 +0000 (+0100) Subject: Connect dialog: Fix an issue where serial ports can't be selected X-Git-Url: http://sigrok.org/gitweb/?p=pulseview.git;a=commitdiff_plain;h=58abb3a372d0fc3b9e0a0087112e5f026e77cdb2 Connect dialog: Fix an issue where serial ports can't be selected Without this fix, clicking the "Serial Port" radio button would not enable the serial port dropdown (it would remain grayed out). --- diff --git a/pv/dialogs/connect.cpp b/pv/dialogs/connect.cpp index 077314f8..d238d681 100644 --- a/pv/dialogs/connect.cpp +++ b/pv/dialogs/connect.cpp @@ -211,6 +211,7 @@ void Connect::serial_toggled(bool checked) { serial_devices_.setEnabled(checked); serial_baudrate_.setEnabled(checked); + serial_config_->setEnabled(checked); } void Connect::tcp_toggled(bool checked)