mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-02-03 22:24:26 +01:00
Bugfix: allow taking of isolation measurements
This commit is contained in:
parent
615a9adacc
commit
735aa1d746
|
|
@ -190,7 +190,10 @@ bool CalibrationMeasurement::Base::canMeasureSimultaneously(std::set<Calibration
|
|||
break;
|
||||
case Type::Isolation:
|
||||
// Uses all ports, unable to measure simultaneously
|
||||
return false;
|
||||
if(measurements.size() > 1) {
|
||||
return false;
|
||||
}
|
||||
break;
|
||||
case Type::Last:
|
||||
// invalid
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Reference in a new issue