Browse Source

Merge pull request #6672 from Vavooon/master

Update hosts list on UDP Configuration creation
QGC4.4
Don Gagne 7 years ago committed by GitHub
parent
commit
5c73f59473
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      src/comm/UDPLink.cc

1
src/comm/UDPLink.cc

@ -405,6 +405,7 @@ void UDPConfiguration::_copyFrom(LinkConfiguration *source) @@ -405,6 +405,7 @@ void UDPConfiguration::_copyFrom(LinkConfiguration *source)
if(!contains_target(_targetHosts, target->address, target->port)) {
UDPCLient* newTarget = new UDPCLient(target);
_targetHosts.append(newTarget);
_updateHostList();
}
}
} else {

Loading…
Cancel
Save