From 1f4a825042b320ce4ecde92c8426001328a8588a Mon Sep 17 00:00:00 2001 From: Srivats P Date: Thu, 27 Oct 2016 21:48:18 +0530 Subject: [PATCH] sign: fix incorrect code added by mistake in a79bbb1f --- client/portswindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/portswindow.cpp b/client/portswindow.cpp index f142953..82aa032 100644 --- a/client/portswindow.cpp +++ b/client/portswindow.cpp @@ -723,7 +723,7 @@ void PortsWindow::on_actionPort_Configuration_triggered() // we want only the modifiable fields populated to send to Drone // TODO: extend Port::protoDataCopyInto() to accept an optional param // which says copy only modifiable fields - plm->port(current).protoDataCopyInto(&config); + //plm->port(current).protoDataCopyInto(&config); config.set_transmit_mode(plm->port(current).transmitMode()); config.set_streams_type(plm->port(current).streamsType()); config.set_is_exclusive_control(plm->port(current).hasExclusiveControl());